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

In sview when switching from a bluegene machine to a regular linux cluster

and vice versa the node->base partition lists will be displayed if setup
in your .slurm/sviewrc file.
parent 114e1b0b
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,9 @@ documents those changes that are of interest to users and admins.
-- Fix bug which would crash slurmcld if job's owner (not root) tries to clear
a job's licenses by setting value to "".
-- Cosmetic fix for printing out debug info in the priority plugin.
-- In sview when switching from a bluegene machine to a regular linux cluster
and vice versa the node->base partition lists will be displayed if setup
in your .slurm/sviewrc file.
* Changes in SLURM 2.3.0.rc2
============================
......
......@@ -952,6 +952,13 @@ extern void set_page_opts(int page, display_data_t *display_data,
itr = list_iterator_create(page_opts->col_list);
while ((col_name = list_next(itr))) {
replus(col_name);
if (strstr(col_name, "list")) {
if (cluster_flags & CLUSTER_FLAG_BG)
xstrsubstitute(col_name, "node", "bp");
else
xstrsubstitute(col_name, "bp", "node");
}
while (display_data++) {
if (display_data->id == -1)
break;
......
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