summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Martinelli <s.martinelli@gmail.com>2016-05-05 09:19:41 -0700
committerSteve Martinelli <s.martinelli@gmail.com>2016-05-05 09:19:41 -0700
commit461a203f2d0e653eabe9a023cfdbe90669ff0618 (patch)
tree815e246bb86b915152f61be915430fa9de34e0f7
parent9f91eadb2b86e89adac9eab32424cf099fcc9b8e (diff)
downloadpython-openstackclient-461a203f2d0e653eabe9a023cfdbe90669ff0618.tar.gz
bump timeout to prevent gate failures
attempt to fix the transient gate failures by increasing the timeout Change-Id: I837652013f94b0d1ed3f4b40fe14ce5a47c687b6
-rw-r--r--functional/tests/compute/v2/test_server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/functional/tests/compute/v2/test_server.py b/functional/tests/compute/v2/test_server.py
index 4309aeaa..247784e1 100644
--- a/functional/tests/compute/v2/test_server.py
+++ b/functional/tests/compute/v2/test_server.py
@@ -268,7 +268,7 @@ class ServerTests(test.TestCase):
self.assertEqual("", raw_output)
self.wait_for_status("ACTIVE")
- def wait_for_status(self, expected_status='ACTIVE', wait=600, interval=30):
+ def wait_for_status(self, expected_status='ACTIVE', wait=900, interval=30):
"""Wait until server reaches expected status."""
# TODO(thowe): Add a server wait command to osc
failures = ['ERROR']