Skip to content

Commit 87500b1

Browse files
committed
Change the name of the output variable
1 parent 6830363 commit 87500b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/roles/backend_services/tasks/main.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,11 +128,11 @@
128128
{{ shell_header }}
129129
{{ oc_header }}
130130
oc get {{ item }} -o json | jq -e '[ .items[].status.conditions[] | select(.type == "Ready") | .message] | select(length > 0) | all(. == "Setup complete")'
131-
register: mariadb_cr_result
132-
until: mariadb_cr_result.stdout == "true"
131+
register: service_cr_result
132+
until: service_cr_result.stdout == "true"
133133
retries: 60
134134
delay: 5
135-
failed_when: mariadb_cr_result.rc != 0 and mariadb_cr_result.stdout != "true"
135+
failed_when: service_cr_result.rc != 0 and service_cr_result.stdout != "true"
136136
loop:
137137
- "Galera"
138138
- "Rabbitmqs"

0 commit comments

Comments
 (0)