Skip to content

Commit

Permalink
Add initial endpoint_url parameter to boto3 client
Browse files Browse the repository at this point in the history
  • Loading branch information
lbeckman314 committed Dec 7, 2023
1 parent 4db98a9 commit bb0883a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fence/resources/aws/boto_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class BotoManager(object):

def __init__(self, config, logger):
self.sts_client = client("sts", **config)
self.s3_client = client("s3", **config)
self.s3_client = client("s3", endpoint_url='TODO', **config)
self.logger = logger
self.ec2 = None
self.iam = None
Expand Down

0 comments on commit bb0883a

Please sign in to comment.