fix bug in storage connection from endpoint

This commit is contained in:
Julius Unverfehrt 2023-03-24 12:50:13 +01:00
parent d0c9fb5b7d
commit eafcd90260

View File

@ -126,7 +126,7 @@ def get_storage_info_from_endpoint(public_key: str, endpoint: str, x_tenant_id:
access_key=maybe_s3["key"],
secret_key=secret,
region=maybe_s3["region"],
bucket_name=maybe_s3,
bucket_name=maybe_s3["bucketName"],
)
else:
raise UnknownStorageBackend()