Skip to content

Commit 65d6a93

Browse files
authoredOct 3, 2019
fix: allow add to request agentOptions (#1506)
Follow up of #1332 Documented here verdaccio/website#126

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎src/lib/up-storage.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ class ProxyStorage implements IProxy {
4141
public timeout: number;
4242
public max_fails: number;
4343
public fail_timeout: number;
44+
public agent_options: any;
4445
// FIXME: upname is assigned to each instance
4546
// @ts-ignore
4647
public upname: string;
@@ -87,6 +88,7 @@ class ProxyStorage implements IProxy {
8788
this.max_fails = Number(setConfig(this.config, 'max_fails', 2));
8889
this.fail_timeout = parseInterval(setConfig(this.config, 'fail_timeout', '5m'));
8990
this.strict_ssl = Boolean(setConfig(this.config, 'strict_ssl', true));
91+
this.agent_options = setConfig(this.config, 'agent_options', {});
9092
}
9193

9294
/**
@@ -200,12 +202,12 @@ class ProxyStorage implements IProxy {
200202
method: method,
201203
headers: headers,
202204
body: json,
203-
// FIXME: ts complains ca cannot be undefined
204205
proxy: this.proxy,
205206
encoding: null,
206207
gzip: true,
207208
timeout: this.timeout,
208209
strictSSL: this.strict_ssl,
210+
agentOptions: this.agent_options,
209211
};
210212

211213
if (this.ca) {

0 commit comments

Comments
 (0)
Please sign in to comment.