Skip to content
Snippets Groups Projects
Commit a15ef88f authored by Danny Auble's avatar Danny Auble
Browse files

Add new errno for overusage

parent 44bea1ba
No related branches found
No related tags found
No related merge requests found
...@@ -261,6 +261,7 @@ enum { ...@@ -261,6 +261,7 @@ enum {
ESLURM_CLUSTER_DELETED, ESLURM_CLUSTER_DELETED,
ESLURM_ONE_CHANGE, ESLURM_ONE_CHANGE,
ESLURM_BAD_NAME, ESLURM_BAD_NAME,
ESLURM_OVER_USAGE,
/* plugin and custom errors */ /* plugin and custom errors */
ESLURM_MISSING_TIME_LIMIT = 8000 ESLURM_MISSING_TIME_LIMIT = 8000
......
...@@ -396,6 +396,8 @@ static slurm_errtab_t slurm_errtab[] = { ...@@ -396,6 +396,8 @@ static slurm_errtab_t slurm_errtab[] = {
"Can only change one at a time" }, "Can only change one at a time" },
{ ESLURM_BAD_NAME, { ESLURM_BAD_NAME,
"Unacceptable name given. (No '.' in name allowed)" }, "Unacceptable name given. (No '.' in name allowed)" },
{ ESLURM_OVER_USAGE,
"Request would go over available amount of usage" },
/* plugin and custom errors */ /* plugin and custom errors */
{ ESLURM_MISSING_TIME_LIMIT, { ESLURM_MISSING_TIME_LIMIT,
......
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