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

Add new job wait reason: WAIT_ASSOC_LIMIT, /* user/bank job limit reached */

parent 2fa31fbb
No related branches found
No related tags found
No related merge requests found
......@@ -221,6 +221,7 @@ enum job_state_reason {
WAIT_HELD, /* job is held, priority==0 */
WAIT_TIME, /* job waiting for specific begin time */
WAIT_LICENSES, /* job is waiting for licenses */
WAIT_ASSOC_LIMIT, /* user/bank job limit reached */
WAIT_TBD1,
WAIT_TBD2,
FAIL_DOWN_PARTITION, /* partition for job is DOWN */
......
......@@ -596,6 +596,8 @@ extern char *job_reason_string(enum job_state_reason inx)
return "BeginTime";
case WAIT_LICENSES:
return "Licenses";
case WAIT_ASSOC_LIMIT:
return "AssociationLimit";
case FAIL_DOWN_PARTITION:
return "PartitionDown";
case FAIL_DOWN_NODE:
......
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