Skip to content

Commit 4a41be8

Browse files
committed
group_from_session_pset - remove confusing error message
The implementation of MPI_Group_from_session_pset was emitting a confusing error message when querying the PMIx server for members of a process group. The routine was using a method for creating an error message that was intended to be using during mpi initialization. Remove that statement and let an error code be returned. Related to #13497 Signed-off-by: Howard Pritchard <howardp@lanl.gov>
1 parent 3a2e908 commit 4a41be8

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

ompi/instance/instance.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1313,7 +1313,6 @@ static int ompi_instance_group_pmix_pset (ompi_instance_t *instance, const char
13131313
ret = opal_pmix_convert_status(rc);
13141314
break;
13151315
}
1316-
ompi_instance_print_error ("PMIx_Query_info() failed", ret);
13171316
goto fn_w_query;
13181317
}
13191318

@@ -1334,7 +1333,6 @@ static int ompi_instance_group_pmix_pset (ompi_instance_t *instance, const char
13341333
if (OPAL_SUCCESS == rc) {
13351334
group->grp_proc_pointers[i] = ompi_proc_find_and_add(&pname,&isnew);
13361335
} else {
1337-
ompi_instance_print_error ("OPAL_PMIX_CONVERT_PROCT failed %d", ret);
13381336
ompi_group_free(&group);
13391337
goto fn_w_info;
13401338
}

0 commit comments

Comments
 (0)