aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-05-25 10:16:00 +0100
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-05-25 10:16:00 +0100
commit55c81d635cce396ebfe4d052ac6ece0b23a720c4 (patch)
tree59ae6ef71ddf0fe53c35b3181ed46de71c17b68f
parent7e0cff453f01ed165ed52ebb11bedc785dc54a92 (diff)
downloadxen-55c81d635cce396ebfe4d052ac6ece0b23a720c4.tar.gz
xen-55c81d635cce396ebfe4d052ac6ece0b23a720c4.tar.bz2
xen-55c81d635cce396ebfe4d052ac6ece0b23a720c4.zip
xend: Increase shutdown timeout.
30 seconds is not a very long time for a busy domain to cleanly shutdown all its services, which may be arbitrary in complexity. Increase the timeout to 5 minutes. Signed-off-by: John Levon <john.levon@sun.com>
-rw-r--r--tools/python/xen/xend/XendConstants.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/python/xen/xend/XendConstants.py b/tools/python/xen/xend/XendConstants.py
index d7469ce5fe..15dcb67b1f 100644
--- a/tools/python/xen/xend/XendConstants.py
+++ b/tools/python/xen/xend/XendConstants.py
@@ -79,7 +79,7 @@ DOM_STATES_OLD = [
STATE_DOM_OK = 1
STATE_DOM_SHUTDOWN = 2
-SHUTDOWN_TIMEOUT = 30.0
+SHUTDOWN_TIMEOUT = (60.0 * 5)
ZOMBIE_PREFIX = 'Zombie-'