mirror of
https://github.com/clearml/clearml
synced 2025-03-03 10:42:00 +00:00
Fix GS without default project will crash
This commit is contained in:
parent
c226a74806
commit
3df7d2651c
@ -259,7 +259,7 @@ class GSBucketConfigurations(BaseBucketConfigurations):
|
||||
config_list = gs_configuration.get("credentials", [])
|
||||
buckets_configs = [GSBucketConfig(**entry) for entry in config_list]
|
||||
|
||||
default_project = gs_configuration.get("project", None) or {}
|
||||
default_project = gs_configuration.get("project", "default") or {}
|
||||
default_credentials = gs_configuration.get("credentials_json", None) or default_credentials
|
||||
default_pool_connections = gs_configuration.get("pool_connections", None)
|
||||
default_pool_maxsize = gs_configuration.get("pool_maxsize", None)
|
||||
|
Loading…
Reference in New Issue
Block a user