From a2dfd49a3ed6c893c2bc29771c3751adc31a92c3 Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Tue, 15 Apr 2014 11:15:34 -0400 Subject: [PATCH] Up the default timeout for stack builds This commit ups the default stack build timeout from 600 to 1200. The stack frequently can take longer than 600 secs to build so doubling it should give us a safe margin. Related-Bug: #1297560 Change-Id: I3b13a225793d42e2fa9f4871b2fe81c745954c56 --- etc/tempest.conf.sample | 2 +- tempest/config.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/tempest.conf.sample b/etc/tempest.conf.sample index a184c7671d..70c791b2e5 100644 --- a/etc/tempest.conf.sample +++ b/etc/tempest.conf.sample @@ -752,7 +752,7 @@ # Timeout in seconds to wait for a stack to build. (integer # value) -#build_timeout=600 +#build_timeout=1200 # Instance type for tests. Needs to be big enough for a full # OS plus the test workload (string value) diff --git a/tempest/config.py b/tempest/config.py index c0ab3237e0..b9fe5728bb 100644 --- a/tempest/config.py +++ b/tempest/config.py @@ -559,7 +559,7 @@ OrchestrationGroup = [ default=1, help="Time in seconds between build status checks."), cfg.IntOpt('build_timeout', - default=600, + default=1200, help="Timeout in seconds to wait for a stack to build."), cfg.StrOpt('instance_type', default='m1.micro',