From c6f78d6e54e84db64c4092cd57a60901ec826627 Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Fri, 22 Aug 2014 03:00:56 +0000 Subject: [PATCH] The PMI ess component now gets used for more than direct launch, so only set standalone_operation flag if no daemon uri is available so we aggregate show_help messages This commit was SVN r32574. --- orte/mca/ess/pmi/ess_pmi_module.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/orte/mca/ess/pmi/ess_pmi_module.c b/orte/mca/ess/pmi/ess_pmi_module.c index 822d0ae2f6..cdedf6b2dd 100644 --- a/orte/mca/ess/pmi/ess_pmi_module.c +++ b/orte/mca/ess/pmi/ess_pmi_module.c @@ -257,7 +257,9 @@ static int rte_init(void) } /* this needs to be set to enable debugger use when direct launched */ - orte_standalone_operation = true; + if (NULL == orte_process_info.my_daemon_uri) { + orte_standalone_operation = true; + } /* set max procs */ if (orte_process_info.max_procs < orte_process_info.num_procs) {