Skip to content

Commit c1d3387

Browse files
committed
Add empty credentials
1 parent 751e5aa commit c1d3387

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

chapter_08_advanced_event_driven/upload_video_and_start.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
@click.command()
1515
@click.argument('video_to_upload')
1616
def main(video_to_upload):
17-
client = boto3.client('s3', endpoint_url=MOCK_S3)
17+
client = boto3.client('s3', endpoint_url=MOCK_S3,
18+
aws_access_key_id='ACCESS_ID',
19+
aws_secret_access_key='ACCESS_KEY')
1820
# Create bucket if not set
1921
client.create_bucket(Bucket=BUCKET)
2022

0 commit comments

Comments
 (0)