diff --git a/clearml/storage/helper.py b/clearml/storage/helper.py index 3c48275e..d6ab2ba2 100644 --- a/clearml/storage/helper.py +++ b/clearml/storage/helper.py @@ -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): diff --git a/clearml/storage/util.py b/clearml/storage/util.py index 0d3b17fa..c1523fbd 100644 --- a/clearml/storage/util.py +++ b/clearml/storage/util.py @@ -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)