mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fixed crash when s3 bucket did not exist for put operation
This commit is contained in:
parent
3f968ff46a
commit
ce0bf71245
1 changed files with 2 additions and 1 deletions
|
@ -371,7 +371,8 @@ def main():
|
|||
|
||||
# Lets check to see if bucket exists to get ground truth.
|
||||
bucketrtn = bucket_check(module, s3, bucket)
|
||||
keyrtn = key_check(module, s3, bucket, obj)
|
||||
if bucketrtn is True:
|
||||
keyrtn = key_check(module, s3, bucket, obj)
|
||||
|
||||
# Lets check key state. Does it exist and if it does, compute the etag md5sum.
|
||||
if bucketrtn is True and keyrtn is True:
|
||||
|
|
Loading…
Reference in a new issue