Commit d435c213 by Qubad786 Committed by muzaffaryousaf

Set acl on each transcript file uploaded to S3.

parent e5fd8a53
...@@ -318,6 +318,7 @@ def upload_sjson_to_s3(config, sjson_data): ...@@ -318,6 +318,7 @@ def upload_sjson_to_s3(config, sjson_data):
uuid=uuid.uuid4().hex uuid=uuid.uuid4().hex
) )
k.set_contents_from_string(json.dumps(sjson_data)) k.set_contents_from_string(json.dumps(sjson_data))
k.set_acl('public-read')
return k.key return k.key
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment