Skip to content
Snippets Groups Projects
Commit 48cbfb89 authored by Morris Jette's avatar Morris Jette
Browse files

Expand log detail and comment explanation of select/cons_res error

parent 37fc16d4
No related branches found
No related tags found
No related merge requests found
......@@ -910,9 +910,12 @@ static int _add_job_to_res(struct job_record *job_ptr, int action)
break;
}
if (i >= p_ptr->num_rows) {
/* ERROR: could not find a row for this job */
/* Job started or resumed and it's allocated resources
* are already in use by some other job. Typically due
* to manually resuming a job. */
error("cons_res: ERROR: job overflow: "
"could not find row for job");
"could not find idle resources for job %u",
job_ptr->job_id);
/* just add the job to the last row for now */
_add_job_to_row(job, &(p_ptr->row[p_ptr->num_rows-1]));
}
......
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