Skip to content

Commit

Permalink
remove mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Siddharth Manoj committed Nov 28, 2023
1 parent f21e674 commit d65003b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions baseplate/sidecars/live_data_watcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,14 +149,14 @@ def _load_from_s3(data: bytes) -> bytes:
s3_client = boto3.client(
"s3",
config=Config(
signature_version=UNSIGNED, retries={"total_max_attempts": 10, "mode": "standard"}
signature_version=UNSIGNED, retries={"total_max_attempts": 10}
),
region_name=region_name,
)
else:
s3_client = boto3.client(
"s3",
config=Config(retries={"total_max_attempts": 10, "mode": "standard"}),
config=Config(retries={"total_max_attempts": 10}),
region_name=region_name,
)

Expand Down

0 comments on commit d65003b

Please sign in to comment.