From fac409d0940f49508e170171fadd4db5a2d138a9 Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Thu, 28 Apr 2016 15:28:55 -0700 Subject: [PATCH] Ensure the personality gets set for the debugger job launch when attaching --- orte/tools/orterun/orterun.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/orte/tools/orterun/orterun.c b/orte/tools/orterun/orterun.c index 711cca0a22..f663864082 100644 --- a/orte/tools/orterun/orterun.c +++ b/orte/tools/orterun/orterun.c @@ -2438,6 +2438,8 @@ static void setup_debugger_job(void) * to avoid confusing the rest of the system's bookkeeping */ orte_plm_base_create_jobid(debugger); + /* set the personality to ORTE */ + opal_argv_append_nosize(&debugger->personality, "orte"); /* flag the job as being debugger daemons */ ORTE_FLAG_SET(debugger, ORTE_JOB_FLAG_DEBUGGER_DAEMON); /* unless directed, we do not forward output */