File tree Expand file tree Collapse file tree 1 file changed +8
-9
lines changed
services/dask-sidecar/src/simcore_service_dask_sidecar Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments