1
1

Merge pull request #2340 from rhc54/topic/dvm

Fix the radix routed component to correctly handle connected tools - …
Этот коммит содержится в:
rhc54 2016-11-01 20:28:02 -07:00 коммит произвёл GitHub
родитель 5e7d8636f6 435d771e76
Коммит 4c9f7af4cb

Просмотреть файл

@ -264,6 +264,13 @@ static orte_process_name_t get_route(orte_process_name_t *target)
} }
} }
/* if the jobid is different than our own, then this the target
* is a tool and we should go direct */
if (ORTE_JOB_FAMILY(target->jobid) != ORTE_JOB_FAMILY(ORTE_PROC_MY_NAME->jobid)) {
ret = target;
goto found;
}
daemon.jobid = ORTE_PROC_MY_NAME->jobid; daemon.jobid = ORTE_PROC_MY_NAME->jobid;
/* find out what daemon hosts this proc */ /* find out what daemon hosts this proc */
if (ORTE_VPID_INVALID == (daemon.vpid = orte_get_proc_daemon_vpid(target))) { if (ORTE_VPID_INVALID == (daemon.vpid = orte_get_proc_daemon_vpid(target))) {