View | Details | Raw Unified | Return to ticket 9477
Collapse All | Expand All

(-)a/NEWS (+1 lines)
Lines 4-9 documents those changes that are of interest to users and administrators. Link Here
4
* Changes in Slurm 19.05.8
4
* Changes in Slurm 19.05.8
5
==========================
5
==========================
6
 -- sbatch - handle --uid/--gid in #SBATCH directives properly.
6
 -- sbatch - handle --uid/--gid in #SBATCH directives properly.
7
 -- Fix reconfigure would reset tresrunmins prioirty/multifactor countdown.
7
8
8
* Changes in Slurm 19.05.7
9
* Changes in Slurm 19.05.7
9
==========================
10
==========================
(-)a/src/slurmctld/proc_req.c (-2 / +1 lines)
Lines 3602-3608 static void _slurm_rpc_reconfigure_controller(slurm_msg_t * msg) Link Here
3602
		     TIME_STR);
3602
		     TIME_STR);
3603
		slurm_send_rc_msg(msg, SLURM_SUCCESS);
3603
		slurm_send_rc_msg(msg, SLURM_SUCCESS);
3604
		acct_storage_g_reconfig(acct_db_conn, 0);
3604
		acct_storage_g_reconfig(acct_db_conn, 0);
3605
		priority_g_reconfig(false);	/* notify priority plugin too */
3605
		priority_g_reconfig(true);	/* notify priority plugin too */
3606
		save_all_state();		/* has its own locks */
3606
		save_all_state();		/* has its own locks */
3607
		queue_job_scheduler();
3607
		queue_job_scheduler();
3608
	}
3608
	}
3609
- 

Return to ticket 9477