Skip to content
Snippets Groups Projects
Commit 333b0b93 authored by Moe Jette's avatar Moe Jette
Browse files

Use actual node configuration information for state save instead of

node configuration from slurm.conf file.
parent 75a23212
No related branches found
No related tags found
No related merge requests found
...@@ -376,9 +376,9 @@ _dump_node_state (struct node_record *dump_node_ptr, Buf buffer) ...@@ -376,9 +376,9 @@ _dump_node_state (struct node_record *dump_node_ptr, Buf buffer)
{ {
packstr (dump_node_ptr->name, buffer); packstr (dump_node_ptr->name, buffer);
pack16 (dump_node_ptr->node_state, buffer); pack16 (dump_node_ptr->node_state, buffer);
pack32 (dump_node_ptr->config_ptr->cpus, buffer); pack32 (dump_node_ptr->cpus, buffer);
pack32 (dump_node_ptr->config_ptr->real_memory, buffer); pack32 (dump_node_ptr->real_memory, buffer);
pack32 (dump_node_ptr->config_ptr->tmp_disk, buffer); pack32 (dump_node_ptr->tmp_disk, buffer);
} }
/* /*
......
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