We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c46f08 commit 6d0e4deCopy full SHA for 6d0e4de
1 file changed
src/roles/ha_scs/tasks/ascs-node-crash.yml
@@ -76,8 +76,10 @@
76
retries: "{{ default_retries }}"
77
delay: "{{ default_delay }}"
78
until: |
79
- cluster_status_test_execution.ascs_node != ""
80
- and cluster_status_test_execution.ers_node != ""
+ (cluster_status_test_execution.ascs_node == cluster_status_pre.ers_node
+ and cluster_status_test_execution.ers_node == cluster_status_pre.ascs_node)
81
+ or (cluster_status_test_execution.ascs_node == cluster_status_pre.ascs_node
82
+ and cluster_status_test_execution.ers_node == cluster_status_pre.ers_node)
83
84
- name: "Test Execution: Simulate ASCS Node Crash"
85
when: ansible_hostname == cluster_status_pre.ascs_node
0 commit comments