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

Default first_job_id now set to 1 (was zero, but zero is used as a flag

for some calls to indicate all jobs).
parent 4b174b7b
No related branches found
No related tags found
No related merge requests found
...@@ -1814,6 +1814,7 @@ init_ctld_conf ( slurm_ctl_conf_t * conf_ptr ) ...@@ -1814,6 +1814,7 @@ init_ctld_conf ( slurm_ctl_conf_t * conf_ptr )
conf_ptr->control_machine = NULL ; conf_ptr->control_machine = NULL ;
conf_ptr->epilog = NULL ; conf_ptr->epilog = NULL ;
conf_ptr->fast_schedule = 1 ; conf_ptr->fast_schedule = 1 ;
conf_ptr->first_job_id = 1 ;
conf_ptr->hash_base = 10 ; conf_ptr->hash_base = 10 ;
conf_ptr->heartbeat_interval = 30; conf_ptr->heartbeat_interval = 30;
conf_ptr->inactive_limit = 0; /* unlimited */ conf_ptr->inactive_limit = 0; /* unlimited */
......
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