Merge pull request #268 from bucklander/bwallander_issue_266

Fixing issue with UTF-8 conversion in Python3 for GCS uploads
This commit is contained in:
Ryan Moriarty 2021-09-13 14:52:54 -06:00 committed by GitHub
commit f9c8c18f36
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -251,7 +251,7 @@ def upload_file(module, client, src, dest):
try: try:
bucket = client.get_bucket(module.params['bucket']) bucket = client.get_bucket(module.params['bucket'])
blob = Blob(dest, bucket) blob = Blob(dest, bucket)
with open(src, "r") as file_obj: with open(src, "rb") as file_obj:
blob.upload_from_file(file_obj) blob.upload_from_file(file_obj)
return blob_to_dict(blob) return blob_to_dict(blob)
except google.cloud.exceptions.GoogleCloudError as e: except google.cloud.exceptions.GoogleCloudError as e: