Change delay to 1s

Something changed in Ansible 2.0 and values lower than 1 works in "strange" way.
Instead of waiting half second it wait aobut 0.1 second.
This commit is contained in:
Łukasz Oleś 2016-02-12 11:49:37 +01:00
parent b2b7fed00f
commit 3785a8a6a5
1 changed files with 2 additions and 2 deletions

View File

@ -17,6 +17,6 @@
- shell: docker exec -t {{ resource_name }} mysql -p{{ root_password }} -uroot -e "SELECT 1"
register: result
until: result.rc == 0
retries: 30
delay: 0.5
retries: 15
delay: 1