From 55decca2b7fe1cf774618a99797d8ab71188a7af Mon Sep 17 00:00:00 2001 From: Nathan Hjelm Date: Wed, 24 Apr 2013 19:05:25 +0000 Subject: [PATCH] routed/debruijn: if the next hop for a message is unknown forward the message to the parent process This commit was SVN r28384. --- orte/mca/routed/debruijn/routed_debruijn.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/orte/mca/routed/debruijn/routed_debruijn.c b/orte/mca/routed/debruijn/routed_debruijn.c index 26ee5c6316..8be205d21b 100644 --- a/orte/mca/routed/debruijn/routed_debruijn.c +++ b/orte/mca/routed/debruijn/routed_debruijn.c @@ -404,8 +404,8 @@ static orte_process_name_t get_route(orte_process_name_t *target) ret.jobid = ORTE_PROC_MY_NAME->jobid; /* find out what daemon hosts this proc */ if (ORTE_VPID_INVALID == (ret.vpid = orte_get_proc_daemon_vpid(target))) { - ORTE_ERROR_LOG(ORTE_ERR_NOT_FOUND); - ret = *ORTE_NAME_INVALID; + /* we don't yet know about this daemon. just route this to the "parent" */ + ret = *ORTE_PROC_MY_PARENT; break; }