Skip to content
Snippets Groups Projects
Commit 8802eccd authored by Brian Christiansen's avatar Brian Christiansen Committed by Marshall Garey
Browse files

Fix job resetting job start time when allocated to already booting node

Bug 12889
parent 0fcab2bb
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,8 @@ documents those changes that are of interest to users and administrators.
of the different user (-u <user>) and not that of root or SlurmUser editor.
-- Fix stepd not respecting SlurmdSyslogDebug.
-- Fix concurrency issue with squeue.
-- Fix job start time not being reset after launch when job is packed onto
already booting node.
 
* Changes in Slurm 21.08.4
==========================
......
......@@ -662,6 +662,7 @@ extern int power_job_reboot(job_record_t *job_ptr)
bit_overlap_any(booting_node_bitmap,
job_ptr->node_bitmap)) {
job_ptr->job_state |= JOB_CONFIGURING;
job_ptr->job_state |= JOB_POWER_UP_NODE;
job_ptr->bit_flags |= NODE_REBOOT;
}
return SLURM_SUCCESS;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment