Skip to content

Commit

Permalink
fix error when wait replication (pingcap#1166)
Browse files Browse the repository at this point in the history
  • Loading branch information
liubo0127 committed Feb 26, 2020
1 parent e5aa088 commit 5771a00
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 @@ -325,7 +325,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 @@ -343,7 +343,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 5771a00

Please sign in to comment.