We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5e7d863 + 435d771 commit 4c9f7afCopy full SHA for 4c9f7af
orte/mca/routed/radix/routed_radix.c
@@ -264,6 +264,13 @@ static orte_process_name_t get_route(orte_process_name_t *target)
264
}
265
266
267
+ /* if the jobid is different than our own, then this the target
268
+ * is a tool and we should go direct */
269
+ if (ORTE_JOB_FAMILY(target->jobid) != ORTE_JOB_FAMILY(ORTE_PROC_MY_NAME->jobid)) {
270
+ ret = target;
271
+ goto found;
272
+ }
273
+
274
daemon.jobid = ORTE_PROC_MY_NAME->jobid;
275
/* find out what daemon hosts this proc */
276
if (ORTE_VPID_INVALID == (daemon.vpid = orte_get_proc_daemon_vpid(target))) {
0 commit comments