mirror of
https://github.com/clearml/clearml
synced 2025-04-06 21:54:36 +00:00
Fix GCS quoting issue
This commit is contained in:
parent
5824e27ada
commit
6dc2c8ca8c
@ -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):
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user