Skip to content

Commit 9f7e209

Browse files
committed
orte: Fix MPI_Spawn
Register namespace even if there is no node-local processes that belongs to it. We need this for the MPI_Spawn case. Addressing #2920. Was introduced in be3ef77. Signed-off-by: Artem Polyakov <artpol84@gmail.com>
1 parent ead453e commit 9f7e209

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

orte/orted/pmix/pmix_server_register_fns.c

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,6 @@ int orte_pmix_server_register_nspace(orte_job_t *jdata)
7474
ORTE_NAME_PRINT(ORTE_PROC_MY_NAME),
7575
ORTE_JOBID_PRINT(jdata->jobid));
7676

77-
/* if this job has no local procs, then no need to register them */
78-
if (0 == jdata->num_local_procs) {
79-
return ORTE_SUCCESS;
80-
}
81-
8277
/* setup the info list */
8378
info = OBJ_NEW(opal_list_t);
8479
uid = geteuid();

0 commit comments

Comments
 (0)