Skip to content
Snippets Groups Projects
Commit 61ecb718 authored by Tim Wickberg's avatar Tim Wickberg
Browse files

Merge branch 'slurm-17.02'

parents 60eac986 5e92a3f5
No related branches found
No related tags found
No related merge requests found
......@@ -102,6 +102,8 @@ documents those changes that are of interest to users and administrators.
* Changes in Slurm 17.02.5
==========================
-- Prevent segfault if a job was blocked from running by a QOS that is then
deleted.
* Changes in Slurm 17.02.4
==========================
......
......@@ -15361,7 +15361,7 @@ extern int job_hold_by_qos_id(uint32_t qos_id)
while ((job_ptr = (struct job_record *) list_next(job_iterator))) {
if (job_ptr->qos_blocking_ptr &&
((slurmdb_qos_rec_t *)job_ptr->qos_blocking_ptr)->id
!= qos_id)
== qos_id)
job_ptr->qos_blocking_ptr = NULL;
if (job_ptr->qos_id != qos_id)
continue;
......
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