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.
This commit is contained in:
Liam Young
2021-08-03 12:24:49 +00:00
parent 3371fe9c2a
commit caa8303cc7
+1 -1
View File
@@ -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,
)