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

Cray - fix to make nodes come back up in accounting if they were

previously marked down by alps.
parent bb176c85
No related branches found
No related tags found
No related merge requests found
...@@ -20,6 +20,8 @@ documents those changes that are of interest to users and admins. ...@@ -20,6 +20,8 @@ documents those changes that are of interest to users and admins.
for a job step. for a job step.
-- Require SchedulerTimeSlice configuration parameter to be at least 5 seconds -- Require SchedulerTimeSlice configuration parameter to be at least 5 seconds
to avoid thrashing slurmd daemon. to avoid thrashing slurmd daemon.
-- Cray - fix to make nodes come back up in accounting if they were
previously marked down by alps.
* Changes in SLURM 2.3.0.rc1 * Changes in SLURM 2.3.0.rc1
============================ ============================
......
...@@ -72,6 +72,7 @@ time_t last_node_update __attribute__((weak_import)); ...@@ -72,6 +72,7 @@ time_t last_node_update __attribute__((weak_import));
struct switch_record *switch_record_table __attribute__((weak_import)); struct switch_record *switch_record_table __attribute__((weak_import));
int switch_record_cnt __attribute__((weak_import)); int switch_record_cnt __attribute__((weak_import));
slurmdb_cluster_rec_t *working_cluster_rec __attribute__((weak_import)) = NULL; slurmdb_cluster_rec_t *working_cluster_rec __attribute__((weak_import)) = NULL;
void *acct_db_conn __attribute__((weak_import)) = NULL;
#else #else
slurm_ctl_conf_t slurmctld_conf; slurm_ctl_conf_t slurmctld_conf;
struct node_record *node_record_table_ptr; struct node_record *node_record_table_ptr;
...@@ -82,6 +83,7 @@ time_t last_node_update; ...@@ -82,6 +83,7 @@ time_t last_node_update;
struct switch_record *switch_record_table; struct switch_record *switch_record_table;
int switch_record_cnt; int switch_record_cnt;
slurmdb_cluster_rec_t *working_cluster_rec = NULL; slurmdb_cluster_rec_t *working_cluster_rec = NULL;
void *acct_db_conn = NULL;
#endif #endif
/* /*
......
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