Skip to content
This repository has been archived by the owner on Jun 24, 2021. It is now read-only.

Commit

Permalink
fix error when wait replication (#1166) (#1173)
Browse files Browse the repository at this point in the history
  • Loading branch information
liubo0127 authored Feb 26, 2020
1 parent d4b1d47 commit f7dee41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions start.yml
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@
return content: yes
body_format: json
register: cluster_status_http
until: cluster_status_http.json.is_initialized is defined and cluster_status_http.json.is_initialized == true
until: cluster_status_http.json is defined and cluster_status_http.json.is_initialized is defined and cluster_status_http.json.is_initialized == true
retries: 20
delay: 10
when:
Expand All @@ -327,7 +327,7 @@
return content: yes
body_format: json
register: cluster_status_https
until: cluster_status_https.json.is_initialized is defined and cluster_status_https.json.is_initialized == true
until: cluster_status_https.json is defined and cluster_status_https.json.is_initialized is defined and cluster_status_https.json.is_initialized == true
retries: 20
delay: 10
when:
Expand Down

0 comments on commit f7dee41

Please sign in to comment.