From c141e418e927dadc90a87ad4e1a939091cfbe54e Mon Sep 17 00:00:00 2001 From: Gaurav Aradhye Date: Fri, 15 Nov 2013 16:20:46 +0530 Subject: [PATCH] CLOUDSTACK-5180: Increasing the timeout for uploading volume --- tools/marvin/marvin/integration/lib/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/marvin/marvin/integration/lib/base.py b/tools/marvin/marvin/integration/lib/base.py index a3a5f5860b7..b03c552427f 100755 --- a/tools/marvin/marvin/integration/lib/base.py +++ b/tools/marvin/marvin/integration/lib/base.py @@ -742,7 +742,7 @@ class Volume: cmd.url = services["url"] return Volume(apiclient.uploadVolume(cmd).__dict__) - def wait_for_upload(self, apiclient, timeout=5, interval=60): + def wait_for_upload(self, apiclient, timeout=10, interval=60): """Wait for upload""" # Sleep to ensure template is in proper state before download time.sleep(interval)