Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions dynamodump/dynamodump.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ def _get_aws_client(
region: str = None,
secret_key: str = None,
access_key: str = None,
endpoint_url: str = None,
):
"""
Build connection to some AWS service.
Expand Down Expand Up @@ -103,6 +104,7 @@ def _get_aws_client(
region_name=aws_region,
aws_access_key_id=access_key,
aws_secret_access_key=secret_key,
endpoint_url=endpoint_url,
)
return client

Expand Down Expand Up @@ -1217,6 +1219,7 @@ def main():
access_key=args.accessKey,
secret_key=args.secretKey,
region=args.region,
endpoint_url="http://" + args.host + ":" + args.port,
)
sleep_interval = LOCAL_SLEEP_INTERVAL
else:
Expand Down