Browse Source

updating until statments on uri module for api verification

ewolinetz 8 years ago
parent
commit
3045d2d7ae

+ 1 - 1
roles/openshift_hosted_logging/handlers/main.yml

@@ -10,7 +10,7 @@
     return_content: yes
     status_code: 200
   register: api_available_output
-  until: "'ok' in api_available_output.content"
+  until: api_available_output | succeeded
   retries: 120
   delay: 1
   changed_when: false

+ 1 - 1
roles/openshift_logging/handlers/main.yml

@@ -10,7 +10,7 @@
     return_content: yes
     status_code: 200
   register: api_available_output
-  until: "'ok' in api_available_output.content"
+  until: api_available_output | succeeded
   retries: 120
   delay: 1
   changed_when: false