We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcf9631 commit a10e5b8Copy full SHA for a10e5b8
services/dask-sidecar/src/simcore_service_dask_sidecar/file_utils.py
@@ -75,7 +75,7 @@ def _s3fs_settings_from_s3_settings(s3_settings: S3Settings) -> S3FsSettingsDict
75
# setting it for the us-east-1 creates issue when creating buckets (which we do in tests)
76
s3fs_settings["client_kwargs"]["region_name"] = s3_settings.S3_REGION
77
if s3_settings.S3_ENDPOINT is not None:
78
- s3fs_settings["client_kwargs"]["endpoint_url"] = s3_settings.S3_ENDPOINT
+ s3fs_settings["client_kwargs"]["endpoint_url"] = f"{s3_settings.S3_ENDPOINT}"
79
return s3fs_settings
80
81
0 commit comments