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.
2 parents 3ff3e13 + 1640cf9 commit 325c9fcCopy full SHA for 325c9fc
src/agent/block_store_services/block_store_s3.js
@@ -38,7 +38,10 @@ class BlockStoreS3 extends BlockStoreBase {
38
secretAccessKey: this.cloud_info.access_keys.secret_key.unwrap(),
39
s3ForcePathStyle: true,
40
signatureVersion: cloud_utils.get_s3_endpoint_signature_ver(endpoint, this.cloud_info.auth_method),
41
- region: DEFAULT_REGION
+ region: DEFAULT_REGION,
42
+ httpOptions: {
43
+ agent: http_utils.get_default_agent(endpoint)
44
+ }
45
});
46
} else {
47
this.disable_delegation = config.EXPERIMENTAL_DISABLE_S3_COMPATIBLE_DELEGATION[this.cloud_info.endpoint_type] ||
0 commit comments