Skip to content

Commit ab1ce8b

Browse files
committed
typo
1 parent e4dafa7 commit ab1ce8b

File tree

1 file changed

+8
-9
lines changed
  • services/dask-sidecar/src/simcore_service_dask_sidecar

1 file changed

+8
-9
lines changed

services/dask-sidecar/src/simcore_service_dask_sidecar/file_utils.py

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,14 @@ def _s3fs_settings_from_s3_settings(s3_settings: S3Settings) -> S3FsSettingsDict
6969
s3fs_settings: S3FsSettingsDict = {
7070
"key": s3_settings.S3_ACCESS_KEY,
7171
"secret": s3_settings.S3_SECRET_KEY,
72-
"client_kwargs": {
73-
"config_kwargs": {
74-
# This setting tells the S3 client to only calculate checksums when explicitly required
75-
# by the operation. This avoids unnecessary checksum calculations for operations that
76-
# don't need them, improving performance.
77-
# See: https://boto3.amazonaws.com/v1/documentation/api/latest/guide/s3.html#calculating-checksums
78-
"request_checksum_calculation": "when_required",
79-
"signature_version": "s3v4",
80-
}
72+
"client_kwargs": {},
73+
"config_kwargs": {
74+
# This setting tells the S3 client to only calculate checksums when explicitly required
75+
# by the operation. This avoids unnecessary checksum calculations for operations that
76+
# don't need them, improving performance.
77+
# See: https://boto3.amazonaws.com/v1/documentation/api/latest/guide/s3.html#calculating-checksums
78+
"request_checksum_calculation": "when_required",
79+
"signature_version": "s3v4",
8180
},
8281
}
8382
if s3_settings.S3_REGION != _DEFAULT_AWS_REGION:

0 commit comments

Comments
 (0)