We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0e91b5 commit dd56623Copy full SHA for dd56623
packages/backend/src/core/S3Service.ts
@@ -28,7 +28,7 @@ export class S3Service {
28
? `${meta.objectStorageUseSSL ? 'https' : 'http'}://${meta.objectStorageEndpoint}`
29
: `${meta.objectStorageUseSSL ? 'https' : 'http'}://example.net`; // dummy url to select http(s) agent
30
31
- const agent = this.httpRequestService.getAgentByUrl(new URL(u), !meta.objectStorageUseProxy);
+ const agent = this.httpRequestService.getAgentByUrl(new URL(u), !meta.objectStorageUseProxy, true);
32
const handlerOption: NodeHttpHandlerOptions = {};
33
if (meta.objectStorageUseSSL) {
34
handlerOption.httpsAgent = agent as https.Agent;
0 commit comments