Skip to content

Commit c081598

Browse files
committed
account for transitory down state in ci/check_slurm.yml
1 parent 30c0cda commit c081598

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ansible/ci/check_slurm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
shell: 'sinfo --noheader --format="%N %P %a %l %D %t" | sort' # using --format ensures we control whitespace: Partition,partition_state,max_jobtime,num_nodes,node_state,node_name
77
register: sinfo
88
changed_when: false
9-
until: not ("boot" in sinfo.stdout or "idle*" in sinfo.stdout)
9+
until: not ("boot" in sinfo.stdout or "idle*" in sinfo.stdout or "down" in sinfo.stdout)
1010
retries: 10
1111
delay: 5
1212
- name: Check nodes have expected slurm state

0 commit comments

Comments
 (0)