Skip to content

Commit 060cc09

Browse files
author
Ralph Castain
committed
Revert "orte: Fix MPI_Spawn"
This reverts commit 9f7e209.
1 parent a17b547 commit 060cc09

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

orte/orted/pmix/pmix_server_register_fns.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,11 @@ 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+
7782
/* setup the info list */
7883
info = OBJ_NEW(opal_list_t);
7984
uid = geteuid();

0 commit comments

Comments
 (0)