Increase timeout for create_bucket as it fails periodically.
This commit is contained in:
parent
459581004d
commit
5b613c2487
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ class AwsCliClient:
|
|||
|
||||
def create_bucket(self, Bucket: str):
|
||||
cmd = f'aws --no-verify-ssl s3api create-bucket --bucket {Bucket} --endpoint-url {S3_GATE}'
|
||||
_cmd_run(cmd)
|
||||
_cmd_run(cmd, timeout=90)
|
||||
|
||||
def list_buckets(self) -> dict:
|
||||
cmd = f'aws --no-verify-ssl s3api list-buckets --endpoint {S3_GATE}'
|
||||
|
|
Loading…
Add table
Reference in a new issue