We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1d3387 commit d333025Copy full SHA for d333025
chapter_08_advanced_event_driven/upload_video_and_start.py
@@ -14,9 +14,11 @@
14
@click.command()
15
@click.argument('video_to_upload')
16
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
19
client = boto3.client('s3', endpoint_url=MOCK_S3,
- aws_access_key_id='ACCESS_ID',
- aws_secret_access_key='ACCESS_KEY')
20
+ aws_access_key_id='FAKE_ACCESS_ID',
21
+ aws_secret_access_key='FAKE_ACCESS_KEY')
22
# Create bucket if not set
23
client.create_bucket(Bucket=BUCKET)
24
0 commit comments