From db79f2392e0baa76f3c81288d0301bec25958e54 Mon Sep 17 00:00:00 2001 From: Josh Hursey Date: Sun, 19 Aug 2007 20:43:33 +0000 Subject: [PATCH] Make sure to enable C/R support for the HNP when restarting. This commit was SVN r15931. --- orte/tools/orte-restart/orte-restart.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/orte/tools/orte-restart/orte-restart.c b/orte/tools/orte-restart/orte-restart.c index 7f5f594db9..7f26dcf98a 100644 --- a/orte/tools/orte-restart/orte-restart.c +++ b/orte/tools/orte-restart/orte-restart.c @@ -475,6 +475,10 @@ static int spawn_children(orte_snapc_base_global_snapshot_t *snapshot, pid_t *ch exit_status = ret; goto cleanup; } + if( ORTE_SUCCESS != (ret = opal_argv_append(&argc, &argv, "-am ft-enable-cr")) ) { + exit_status = ret; + goto cleanup; + } if( NULL != orte_restart_globals.hostfile ) { if( ORTE_SUCCESS != (ret = opal_argv_append(&argc, &argv, "--hostfile")) ) { exit_status = ret;