From 90c020d69a69ebc396416e4086a2e0838932130c Mon Sep 17 00:00:00 2001 From: Gurov Ilya Date: Mon, 8 Jun 2020 20:48:08 +0300 Subject: [PATCH] fix: set default POST policy scheme to "http" (#172) --- google/cloud/storage/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google/cloud/storage/client.py b/google/cloud/storage/client.py index 4927aecf9..4b23de04e 100644 --- a/google/cloud/storage/client.py +++ b/google/cloud/storage/client.py @@ -928,7 +928,7 @@ def generate_signed_post_policy_v4( credentials=None, virtual_hosted_style=False, bucket_bound_hostname=None, - scheme=None, + scheme="http", service_account_email=None, access_token=None, ):