We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 810d929 commit 3a6bf7aCopy full SHA for 3a6bf7a
inbox/util/blockstore.py
@@ -58,7 +58,7 @@ def _save_to_s3_bucket(data_sha256, bucket_name, data):
58
# Boto pools connections at the class level
59
conn = S3Connection(host=config.get('CUSTOM_S3_HOST', None),
60
port=config.get('CUSTOM_S3_PORT', None),
61
- is_secure=config.get('CUSTOM_S3_SSL', True)
+ is_secure=config.get('CUSTOM_S3_SSL', True),
62
aws_access_key_id=config.get('AWS_ACCESS_KEY_ID'),
63
aws_secret_access_key=config.get('AWS_SECRET_ACCESS_KEY'),
64
calling_format=OrdinaryCallingFormat())
@@ -124,7 +124,7 @@ def _get_from_s3_bucket(data_sha256, bucket_name):
124
125
126
127
128
129
130
0 commit comments