From 5152b6e5598b5823a1bd5a63ee3872d66aad9507 Mon Sep 17 00:00:00 2001 From: Mark Chappell Date: Fri, 22 Oct 2021 14:03:41 +0200 Subject: [PATCH] Remove reference to 'boto' from s3_bucket (it's not using boto and the Error comes from the API (#543) Remove reference to 'boto' from s3_bucket failure SUMMARY Remove reference to 'boto' from s3_bucket failure: it's not using boto. ISSUE TYPE Docs Pull Request COMPONENT NAME s3_bucket ADDITIONAL INFORMATION Reviewed-by: None --- plugins/modules/s3_bucket.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/s3_bucket.py b/plugins/modules/s3_bucket.py index ed5cbd68153..6f56018ed71 100644 --- a/plugins/modules/s3_bucket.py +++ b/plugins/modules/s3_bucket.py @@ -963,7 +963,7 @@ def main(): s3_client = get_s3_client(module, aws_connect_kwargs, location, ceph, s3_url) if s3_client is None: # this should never happen - module.fail_json(msg='Unknown error, failed to create s3 connection, no information from boto.') + module.fail_json(msg='Unknown error, failed to create s3 connection, no information available.') state = module.params.get("state") encryption = module.params.get("encryption")