From bd9bd2ff16ca1badf93c10691f86d37c06bb81b6 Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Mon, 24 Mar 2014 15:28:09 +0000 Subject: [PATCH] Be consistent in our handling of the "only HNP in allocation" case when setting up the VM. Thanks to Tetsuya Mishima for the suggestion. cmr=v1.8:reviewer=rhc This commit was SVN r31195. --- orte/mca/plm/base/plm_base_launch_support.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/orte/mca/plm/base/plm_base_launch_support.c b/orte/mca/plm/base/plm_base_launch_support.c index 3665b88ff3..fdf8df5f24 100644 --- a/orte/mca/plm/base/plm_base_launch_support.c +++ b/orte/mca/plm/base/plm_base_launch_support.c @@ -1689,6 +1689,9 @@ int orte_plm_base_setup_virtual_machine(orte_job_t *jdata) "%s plm:base:setup_vm only HNP left", ORTE_NAME_PRINT(ORTE_PROC_MY_NAME))); OBJ_DESTRUCT(&nodes); + /* mark that the daemons have reported so we can proceed */ + daemons->state = ORTE_JOB_STATE_DAEMONS_REPORTED; + daemons->updated = false; return ORTE_SUCCESS; }