diff options
| author | ewolinetz <ewolinet@redhat.com> | 2017-02-17 16:41:21 -0600 | 
|---|---|---|
| committer | ewolinetz <ewolinet@redhat.com> | 2017-02-17 16:41:21 -0600 | 
| commit | 3045d2d7aebe0e971e1443d94e5d23fc1f1d24e9 (patch) | |
| tree | 1475eb34df8292749775d3c307889ff1ad932e09 | |
| parent | ba4b6abb5fb2cc7f34b3f0ba5e8d3b8209748dd9 (diff) | |
updating until statments on uri module for api verification
| -rw-r--r-- | roles/openshift_hosted_logging/handlers/main.yml | 2 | ||||
| -rw-r--r-- | roles/openshift_logging/handlers/main.yml | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/roles/openshift_hosted_logging/handlers/main.yml b/roles/openshift_hosted_logging/handlers/main.yml index 119a76a3a..2f83dd41b 100644 --- a/roles/openshift_hosted_logging/handlers/main.yml +++ b/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 diff --git a/roles/openshift_logging/handlers/main.yml b/roles/openshift_logging/handlers/main.yml index 119a76a3a..2f83dd41b 100644 --- a/roles/openshift_logging/handlers/main.yml +++ b/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  | 
