Skip to content
Snippets Groups Projects
Commit 08b56783 authored by alejluther's avatar alejluther Committed by Morris Jette
Browse files

Avoiding a slurmctld crash when scheduling problems due to resources. Setting...

Avoiding a slurmctld crash when scheduling problems due to resources. Setting an ADMIN hold instead.
parent cf564e12
No related branches found
No related tags found
No related merge requests found
......@@ -499,7 +499,11 @@ static void _cyclic_sync_core_bitmap(struct job_record *job_ptr,
}
if (prev_cpus == cpus) {
/* we're stuck! */
fatal("cons_res: sync loop not progressing");
job_ptr->priority = 0;
job_ptr->state_reason = WAIT_HELD;
error("cons_res: sync loop not progressing, "
"job %u", job_ptr->job_id);
return -1;
}
}
/* clear the rest of the cores in each socket
......
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