Skip to content

Commit

Permalink
storage: Fix docs for signed URL generation (#3008)
Browse files Browse the repository at this point in the history
Co-authored-by: Bu Sun Kim <[email protected]>
Co-authored-by: Christopher Wilcox <[email protected]>
  • Loading branch information
3 people authored Mar 6, 2020
1 parent a9f4802 commit 3bfad2c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def generate_upload_signed_url_v4(bucket_name, blob_name):
version="v4",
# This URL is valid for 15 minutes
expiration=datetime.timedelta(minutes=15),
# Allow GET requests using this URL.
# Allow PUT requests using this URL.
method="PUT",
content_type="application/octet-stream",
)
Expand Down

0 comments on commit 3bfad2c

Please sign in to comment.