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

Make sacctmgr print out classification correctly for clusters

parent 5b6bd349
No related branches found
No related tags found
No related merge requests found
...@@ -5,6 +5,7 @@ documents those changes that are of interest to users and administrators. ...@@ -5,6 +5,7 @@ documents those changes that are of interest to users and administrators.
========================== ==========================
-- Make sure assoc_mgr locks are initialized correctly. -- Make sure assoc_mgr locks are initialized correctly.
-- Correct check of enforcement when filling in an association. -- Correct check of enforcement when filling in an association.
-- Make sacctmgr print out classification correctly for clusters
* Changes in Slurm 14.11.3 * Changes in Slurm 14.11.3
========================== ==========================
......
...@@ -197,7 +197,7 @@ static print_field_t *_get_print_field(char *object) ...@@ -197,7 +197,7 @@ static print_field_t *_get_print_field(char *object)
field->print_routine = print_fields_uint16; field->print_routine = print_fields_uint16;
} else if (!strncasecmp("Classification", object, } else if (!strncasecmp("Classification", object,
MAX(command_len, 3))) { MAX(command_len, 3))) {
field->type = PRINT_CPUS; field->type = PRINT_CLASS;
field->name = xstrdup("Class"); field->name = xstrdup("Class");
field->len = 9; field->len = 9;
field->print_routine = print_fields_str; field->print_routine = print_fields_str;
......
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