From caa8303cc776bbc6faf09a14470a6e53915d0506 Mon Sep 17 00:00:00 2001 From: Liam Young Date: Tue, 3 Aug 2021 12:24:49 +0000 Subject: [PATCH] Bump trilio snapshot create timeout A recent testrun failed when using an S3 backend because the snapshot creation timed out. The time out is set to 900s but it took 959s. --- zaza/openstack/charm_tests/trilio/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zaza/openstack/charm_tests/trilio/tests.py b/zaza/openstack/charm_tests/trilio/tests.py index 6fb7692..156f1e2 100644 --- a/zaza/openstack/charm_tests/trilio/tests.py +++ b/zaza/openstack/charm_tests/trilio/tests.py @@ -262,7 +262,7 @@ class WorkloadmgrCLIHelper(object): retryer = tenacity.Retrying( wait=tenacity.wait_exponential(multiplier=1, max=30), - stop=tenacity.stop_after_delay(900), + stop=tenacity.stop_after_delay(1200), reraise=True, )