Skip to content
Snippets Groups Projects
Commit 4b2a7a89 authored by Moe Jette's avatar Moe Jette
Browse files

Fix bug, failed to load DisableRootJobs configuration parameter.

parent ee8e2c53
No related branches found
No related tags found
No related merge requests found
...@@ -28,6 +28,7 @@ documents those changes that are of interest to users and admins. ...@@ -28,6 +28,7 @@ documents those changes that are of interest to users and admins.
-- Convert configuration parameter PrivateData from on/off flag to have -- Convert configuration parameter PrivateData from on/off flag to have
separate flags for job, partition, and node data. See "man slurm.conf" separate flags for job, partition, and node data. See "man slurm.conf"
for details. for details.
-- Fix bug, failed to load DisableRootJobs configuration parameter.
-- Altered sacctmgr to always return a non-zero exit code on error and send -- Altered sacctmgr to always return a non-zero exit code on error and send
error messages to stderr. error messages to stderr.
......
...@@ -1593,7 +1593,7 @@ validate_and_set_defaults(slurm_ctl_conf_t *conf, s_p_hashtbl_t *hashtbl) ...@@ -1593,7 +1593,7 @@ validate_and_set_defaults(slurm_ctl_conf_t *conf, s_p_hashtbl_t *hashtbl)
if (!s_p_get_boolean((bool *) &conf->enforce_part_limits, if (!s_p_get_boolean((bool *) &conf->enforce_part_limits,
"EnforcePartLimits", hashtbl)) "EnforcePartLimits", hashtbl))
conf->disable_root_jobs = DEFAULT_ENFORCE_PART_LIMITS; conf->enforce_part_limits = DEFAULT_ENFORCE_PART_LIMITS;
s_p_get_string(&conf->epilog, "Epilog", hashtbl); s_p_get_string(&conf->epilog, "Epilog", hashtbl);
......
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