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

Move job priority=1 setting all into the function schedule().

parent 223b1708
No related branches found
No related tags found
No related merge requests found
...@@ -178,12 +178,6 @@ int schedule(void) ...@@ -178,12 +178,6 @@ int schedule(void)
sizeof(struct part_record *)); sizeof(struct part_record *));
failed_parts[failed_part_cnt++] = failed_parts[failed_part_cnt++] =
job_ptr->part_ptr; job_ptr->part_ptr;
} else if (error_code ==
ESLURM_REQUESTED_PART_CONFIG_UNAVAILABLE) {
debug3("job %u not runnable with present config",
job_ptr->job_id);
last_job_update = time(NULL);
job_ptr->priority = 1; /* Move to end of queue */
} else if (error_code == SLURM_SUCCESS) { } else if (error_code == SLURM_SUCCESS) {
/* job initiated */ /* job initiated */
last_job_update = time(NULL); last_job_update = time(NULL);
...@@ -192,7 +186,8 @@ int schedule(void) ...@@ -192,7 +186,8 @@ int schedule(void)
if (job_ptr->batch_flag) if (job_ptr->batch_flag)
_launch_job(job_ptr); _launch_job(job_ptr);
job_cnt++; job_cnt++;
} else { } else if (error_code !=
ESLURM_REQUESTED_PART_CONFIG_UNAVAILABLE) {
info("schedule: JobId=%u non-runnable: %m", info("schedule: JobId=%u non-runnable: %m",
job_ptr->job_id); job_ptr->job_id);
last_job_update = time(NULL); last_job_update = time(NULL);
......
...@@ -799,6 +799,7 @@ int select_nodes(struct job_record *job_ptr, bool test_only) ...@@ -799,6 +799,7 @@ int select_nodes(struct job_record *job_ptr, bool test_only)
debug3("JobId=%u not runnable with present config", debug3("JobId=%u not runnable with present config",
job_ptr->job_id); job_ptr->job_id);
job_ptr->priority = 1; /* Move to end of queue */ job_ptr->priority = 1; /* Move to end of queue */
last_job_update = time(NULL);
} }
goto cleanup; goto cleanup;
} }
......
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