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

made show config with sview up to date

parent e4bb5929
No related branches found
No related tags found
No related merge requests found
......@@ -292,16 +292,16 @@ static void _layout_ctl_conf(GtkTreeStore *treestore,
add_display_treestore_line_with_font(
update, treestore, &iter,
"Configuration data as of", temp_str, "bold");
add_display_treestore_line(update, treestore, &iter,
"AccountingStorageBackupHost",
slurm_ctl_conf_ptr->
accounting_storage_backup_host);
accounting_enforce_string(
slurm_ctl_conf_ptr->accounting_storage_enforce,
temp_str, sizeof(temp_str));
add_display_treestore_line(update, treestore, &iter,
"AccountingStorageEnforce",
temp_str);
add_display_treestore_line(update, treestore, &iter,
"AccountingStorageBackupHost",
slurm_ctl_conf_ptr->
accounting_storage_backup_host);
add_display_treestore_line(update, treestore, &iter,
"AccountingStorageHost",
slurm_ctl_conf_ptr->accounting_storage_host);
......@@ -530,6 +530,11 @@ static void _layout_ctl_conf(GtkTreeStore *treestore,
add_display_treestore_line(update, treestore, &iter,
"MaxMemPerCPU", "UNLIMITED");
}
snprintf(temp_str, sizeof(temp_str), "%u",
slurm_ctl_conf_ptr->max_tasks_per_node);
add_display_treestore_line(update, treestore, &iter,
"MaxTasksPerNode",
temp_str);
snprintf(temp_str, sizeof(temp_str), "%u",
slurm_ctl_conf_ptr->msg_timeout);
add_display_treestore_line(update, treestore, &iter,
......
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