diff --git a/opal/mca/pmix/ext2x/pmix2x_component.c b/opal/mca/pmix/ext2x/pmix2x_component.c index 3860ab677be..6657307c1d5 100644 --- a/opal/mca/pmix/ext2x/pmix2x_component.c +++ b/opal/mca/pmix/ext2x/pmix2x_component.c @@ -100,6 +100,7 @@ static int external_component_query(mca_base_module_t **module, int *priority) /* see if a PMIx server is present */ if (NULL != (t = getenv("PMIX_SERVER_URI")) || + NULL != (t = getenv("PMIX_SERVER_URI2")) || NULL != (id = getenv("PMIX_ID"))) { /* if PMIx is present, then we are a client and need to use it */ *priority = 100; diff --git a/opal/mca/pmix/pmix2x/pmix2x_component.c b/opal/mca/pmix/pmix2x/pmix2x_component.c index 03246c11801..c6141ec4ad8 100644 --- a/opal/mca/pmix/pmix2x/pmix2x_component.c +++ b/opal/mca/pmix/pmix2x/pmix2x_component.c @@ -117,6 +117,7 @@ static int external_component_query(mca_base_module_t **module, int *priority) /* see if a PMIx server is present */ if (NULL != (t = getenv("PMIX_SERVER_URI")) || + NULL != (t = getenv("PMIX_SERVER_URI2")) || NULL != (id = getenv("PMIX_ID"))) { /* if PMIx is present, then we are a client and need to use it */ *priority = 100;