Skip to content
Snippets Groups Projects
Unverified Commit d29ea386 authored by Florian Ruynat's avatar Florian Ruynat Committed by GitHub
Browse files

Fix issue with api token wait check not working (#7566)

parent a0ee5690
No related branches found
No related tags found
No related merge requests found
...@@ -49,7 +49,7 @@ ...@@ -49,7 +49,7 @@
executable: /bin/bash executable: /bin/bash
changed_when: false changed_when: false
register: default_token register: default_token
until: default_token.stdout.find('<none>') == -1 until: default_token.stdout | length > 0
retries: 5 retries: 5
delay: 5 delay: 5
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment