Skip to content

Commit b2f14cf

Browse files
committed
Remove GDS envar disablement
No longer required Signed-off-by: Ralph Castain <[email protected]>
1 parent 4e664bd commit b2f14cf

File tree

3 files changed

+0
-12
lines changed

3 files changed

+0
-12
lines changed

src/client/pmix_client.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -619,10 +619,6 @@ PMIX_EXPORT pmix_status_t PMIx_Init(pmix_proc_t *proc, pmix_info_t info[], size_
619619
/* anything else should just be cleared */
620620
pmix_unsetenv("PMIX_MCA_ptl", &environ);
621621
}
622-
/* temporarily disable GDS MCA directive */
623-
if (NULL != getenv("PMIX_MCA_gds")) {
624-
pmix_unsetenv("PMIX_MCA_gds", &environ);
625-
}
626622

627623
/* setup the runtime - this init's the globals,
628624
* opens and initializes the required frameworks */

src/server/pmix_server.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -559,10 +559,6 @@ PMIX_EXPORT pmix_status_t PMIx_server_init(pmix_server_module_t *module, pmix_in
559559
/* anything else should just be cleared */
560560
pmix_unsetenv("PMIX_MCA_ptl", &environ);
561561
}
562-
/* temporarily disable GDS MCA directive */
563-
if (NULL != getenv("PMIX_MCA_gds")) {
564-
pmix_unsetenv("PMIX_MCA_gds", &environ);
565-
}
566562

567563
/* init the parent procid to something innocuous */
568564
PMIX_LOAD_PROCID(&myparent, NULL, PMIX_RANK_UNDEF);

src/tool/pmix_tool.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -478,10 +478,6 @@ PMIX_EXPORT int PMIx_tool_init(pmix_proc_t *proc, pmix_info_t info[], size_t nin
478478
/* anything else should just be cleared */
479479
pmix_unsetenv("PMIX_MCA_ptl", &environ);
480480
}
481-
/* temporarily disable GDS MCA directive */
482-
if (NULL != getenv("PMIX_MCA_gds")) {
483-
pmix_unsetenv("PMIX_MCA_gds", &environ);
484-
}
485481

486482
/* parse the input directives */
487483
PMIX_SET_PROC_TYPE(&ptype, PMIX_PROC_TOOL);

0 commit comments

Comments
 (0)