From bb3842e35cd9d1e2ecb3e1cc8a903e8b6c110ffe Mon Sep 17 00:00:00 2001 From: Moe Jette <jette1@llnl.gov> Date: Thu, 1 Apr 2004 18:11:50 +0000 Subject: [PATCH] Report completing nodes associated with a job even if not responding. --- src/scontrol/scontrol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scontrol/scontrol.c b/src/scontrol/scontrol.c index 35a1a1f1306..50567cce064 100644 --- a/src/scontrol/scontrol.c +++ b/src/scontrol/scontrol.c @@ -471,7 +471,7 @@ _print_completing_job(job_info_t *job_ptr, node_info_msg_t *node_info_msg) for (i=0; i<node_info_msg->record_count; i++) { if (hostlist_find(all_nodes, node_info[i].name) == -1) continue; /* node not assigned to this job */ - node_state = node_info[i].node_state; + node_state = node_info[i].node_state & (~NODE_STATE_NO_RESPOND); if (node_state == NODE_STATE_COMPLETING) hostlist_push_host(comp_nodes, node_info[i].name); if (node_state == NODE_STATE_DOWN) -- GitLab