Fix GCS quoting issue

This commit is contained in:
Alex Burlacu 2023-07-06 12:23:06 +03:00
parent 5824e27ada
commit 6dc2c8ca8c
2 changed files with 2 additions and 2 deletions

View File

@ -1783,7 +1783,7 @@ class StorageHelper(object):
Supports both local and remote files (currently local files, network-mapped files, HTTP/S and Amazon S3)
"""
_temp_download_suffix = '.partially'
_quotable_uri_schemes = set(_HttpDriver.schemes) | set([_GoogleCloudStorageDriver.scheme])
_quotable_uri_schemes = set(_HttpDriver.schemes)
@classmethod
def _get_logger(cls):

View File

@ -44,7 +44,7 @@ def get_config_object_matcher(**patterns):
def quote_url(url):
parsed = urlparse(url)
if parsed.scheme not in ("http", "https", "gs"):
if parsed.scheme not in ("http", "https"):
return url
parsed = parsed._replace(path=quote(parsed.path))
return urlunparse(parsed)