Skip to content
Snippets Groups Projects
Commit 46348f91 authored by Don Lipari's avatar Don Lipari Committed by Morris Jette
Browse files

Record updated job time limit if modified by backfill

Without this change, if the job's time limit is modified down
toward --time-min by the backfill scheduler, update the job's
time limit in the database.
parent dced5e7f
No related branches found
No related tags found
No related merge requests found
...@@ -64,6 +64,7 @@ ...@@ -64,6 +64,7 @@
#include "src/common/macros.h" #include "src/common/macros.h"
#include "src/common/node_select.h" #include "src/common/node_select.h"
#include "src/common/parse_time.h" #include "src/common/parse_time.h"
#include "src/common/slurm_accounting_storage.h"
#include "src/common/slurm_protocol_api.h" #include "src/common/slurm_protocol_api.h"
#include "src/common/xmalloc.h" #include "src/common/xmalloc.h"
#include "src/common/xstring.h" #include "src/common/xstring.h"
...@@ -875,7 +876,11 @@ static int _attempt_backfill(void) ...@@ -875,7 +876,11 @@ static int _attempt_backfill(void)
job_ptr->start_time = 0; job_ptr->start_time = 0;
break; break;
} else { } else {
/* Started this job, move to next one */ /* Started this job. Update the database if job
* time limit changed and move to next job */
if (orig_time_limit != job_ptr->time_limit)
jobacct_storage_g_job_start(acct_db_conn,
job_ptr);
continue; continue;
} }
} else } else
......
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