Skip to content

Commit

Permalink
s3_sync - drop unused retries parameter (#1166)
Browse files Browse the repository at this point in the history
s3_sync - drop unused retries parameter

SUMMARY
The retries parameter was never used, remove it.
ISSUE TYPE

Feature Pull Request

COMPONENT NAME
s3_sync
ADDITIONAL INFORMATION
See also: ansible/ansible#63989

Reviewed-by: Markus Bergholz <[email protected]>
  • Loading branch information
tremble authored May 26, 2022
1 parent 60cd794 commit ce0e440
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 2 additions & 0 deletions changelogs/fragments/1166-s3_sync-retries.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
removed_features:
- s3_sync - remove unused ``retries`` parameter (https://github.com/ansible-collections/community.aws/pull/1166).
5 changes: 0 additions & 5 deletions plugins/modules/s3_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,6 @@
required: false
default: no
type: bool
retries:
description:
- The I(retries) option does nothing and will be removed after 2022-06-01
type: str
author: Ted Timmons (@tedder)
extends_documentation_fragment:
Expand Down Expand Up @@ -542,7 +538,6 @@ def main():
file_root=dict(required=True, type='path'),
permission=dict(required=False, choices=['private', 'public-read', 'public-read-write', 'authenticated-read',
'aws-exec-read', 'bucket-owner-read', 'bucket-owner-full-control']),
retries=dict(required=False, removed_at_date='2022-06-01', removed_from_collection='community.aws'),
mime_map=dict(required=False, type='dict'),
exclude=dict(required=False, default=".*"),
include=dict(required=False, default="*"),
Expand Down

0 comments on commit ce0e440

Please sign in to comment.