Fix issue with api token wait check not working (#7566)
This commit is contained in:
parent
a0ee569091
commit
d29ea386d6
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@
|
|||
executable: /bin/bash
|
||||
changed_when: false
|
||||
register: default_token
|
||||
until: default_token.stdout.find('<none>') == -1
|
||||
until: default_token.stdout | length > 0
|
||||
retries: 5
|
||||
delay: 5
|
||||
|
||||
|
|
Loading…
Reference in a new issue