Skip to content

Commit d333025

Browse files
committed
Clarify the code
1 parent c1d3387 commit d333025

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

chapter_08_advanced_event_driven/upload_video_and_start.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@
1414
@click.command()
1515
@click.argument('video_to_upload')
1616
def main(video_to_upload):
17+
# Note the credentials are required by boto3, but whe are using
18+
# a mock S3 that doesn't require them, so they can be fake
1719
client = boto3.client('s3', endpoint_url=MOCK_S3,
18-
aws_access_key_id='ACCESS_ID',
19-
aws_secret_access_key='ACCESS_KEY')
20+
aws_access_key_id='FAKE_ACCESS_ID',
21+
aws_secret_access_key='FAKE_ACCESS_KEY')
2022
# Create bucket if not set
2123
client.create_bucket(Bucket=BUCKET)
2224

0 commit comments

Comments
 (0)