Skip to content

Commit acf2038

Browse files
author
Vasileios Karakasis
authored
Merge pull request #845 from teojgo/bugfix/test_poll_squeue
[bugfix] Fix how Slurm states are mapped internally by the Slurm backend
2 parents c5fcd00 + 892f2bb commit acf2038

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

reframe/core/schedulers/slurm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ def slurm_state_completed(state):
1919
'BOOT_FAIL',
2020
'CANCELLED',
2121
'COMPLETED',
22-
'CONFIGURING',
23-
'COMPLETING',
2422
'DEADLINE',
2523
'FAILED',
2624
'NODE_FAIL',
@@ -33,6 +31,8 @@ def slurm_state_completed(state):
3331

3432
def slurm_state_pending(state):
3533
pending_states = {
34+
'COMPLETING',
35+
'CONFIGURING',
3636
'PENDING',
3737
'RESV_DEL_HOLD',
3838
'REQUEUE_FED',

0 commit comments

Comments
 (0)