From 6049776081e808f971a4a05d7c4d7a283f6e2815 Mon Sep 17 00:00:00 2001 From: Samuel Matzek Date: Mon, 11 Dec 2017 09:38:34 -0600 Subject: [PATCH] Fix Increase guest agent cmd process timeout A previous commit attempted to set the guest agent command process timeout value high but had a copy-paste error in the line that actually sets the environment variable value into the guest conf file. This fixes the copy-paste issue. Change-Id: Ib8aa566fb34eb52e2541d0ccb595234373e01bc2 --- devstack/plugin.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devstack/plugin.sh b/devstack/plugin.sh index 2ff506e3d5..b0dd983d8a 100644 --- a/devstack/plugin.sh +++ b/devstack/plugin.sh @@ -286,7 +286,7 @@ function configure_trove { # Use these values only if they're set iniset_conditional $TROVE_GUESTAGENT_CONF DEFAULT state_change_wait_time $TROVE_STATE_CHANGE_WAIT_TIME - iniset_conditional $TROVE_COMMAND_PROCESS_TIMEOUT DEFAULT command_process_timeout $TROVE_COMMAND_PROCESS_TIMEOUT + iniset_conditional $TROVE_GUESTAGENT_CONF DEFAULT command_process_timeout $TROVE_COMMAND_PROCESS_TIMEOUT # Set up Guest Agent conf iniset $TROVE_GUESTAGENT_CONF DEFAULT rpc_backend "rabbit"