Skip to content

Commit 7facb3f

Browse files
author
Ralph Castain
committed
Pickup and deploy network-specific envars
Signed-off-by: Ralph Castain <rhc@open-mpi.org>
1 parent c7939ae commit 7facb3f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

opal/mca/pmix/pmix4x/pmix/src/mca/pnet/tcp/pnet_tcp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ static pmix_status_t allocate(pmix_nspace_t *nptr,
342342
return rc;
343343
}
344344
return PMIX_SUCCESS;
345-
} else if (PMIX_CHECK_KEY(info, PMIX_ALLOC_NETWORK)) {
345+
} else if (!PMIX_CHECK_KEY(info, PMIX_ALLOC_NETWORK)) {
346346
/* not a network allocation request */
347347
return PMIX_SUCCESS;
348348
}

orte/mca/odls/base/odls_base_default_fns.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -684,6 +684,8 @@ int orte_odls_base_default_construct_child_list(opal_buffer_t *buffer,
684684
0 == strcmp(kv->key, OPAL_PMIX_UNSET_ENVAR) ||
685685
0 == strcmp(kv->key, OPAL_PMIX_PREPEND_ENVAR) ||
686686
0 == strcmp(kv->key, OPAL_PMIX_APPEND_ENVAR)) {
687+
opal_output_verbose(5, orte_odls_base_framework.framework_output,
688+
"ORTE:ODLS ADDING ENVAR %s", kv->data.envar.envar);
687689
opal_list_prepend(&cache, &kv->super);
688690
} else {
689691
/* need to pass it to pmix.setup_local_support */

0 commit comments

Comments
 (0)