diff --git a/orte/util/nidmap.c b/orte/util/nidmap.c index 4fd98ffa19..ff0db73fb2 100644 --- a/orte/util/nidmap.c +++ b/orte/util/nidmap.c @@ -324,23 +324,10 @@ int orte_util_encode_nodemap(opal_byte_object_t *boptr, bool update) return rc; } - /* only send info on nodes that have daemons on them, and - * only regarding daemons that have changed - i.e., new - * daemons since the last time we sent the info - so we - * minimize the size of the nidmap message. The daemon - * will maintain a global picture of the overall nidmap - * as it receives updates, and pass that down to the procs - */ for (i=0; i < daemons->procs->size; i++) { if (NULL == (dmn = (orte_proc_t*)opal_pointer_array_get_item(daemons->procs, i))) { continue; } - /* if we want an update nidmap and this daemon hasn't - * been updated, then skip it - */ - if (update && !ORTE_FLAG_TEST(dmn, ORTE_PROC_FLAG_UPDATED)) { - continue; - } /* if the daemon doesn't have a node, that's an error */ if (NULL == (node = dmn->node)) { opal_output(0, "DAEMON %s HAS NO NODE", ORTE_NAME_PRINT(&dmn->name));