File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ class ProxyStorage implements IProxy {
41
41
public timeout : number ;
42
42
public max_fails : number ;
43
43
public fail_timeout : number ;
44
+ public agent_options : any ;
44
45
// FIXME: upname is assigned to each instance
45
46
// @ts -ignore
46
47
public upname : string ;
@@ -87,6 +88,7 @@ class ProxyStorage implements IProxy {
87
88
this . max_fails = Number ( setConfig ( this . config , 'max_fails' , 2 ) ) ;
88
89
this . fail_timeout = parseInterval ( setConfig ( this . config , 'fail_timeout' , '5m' ) ) ;
89
90
this . strict_ssl = Boolean ( setConfig ( this . config , 'strict_ssl' , true ) ) ;
91
+ this . agent_options = setConfig ( this . config , 'agent_options' , { } ) ;
90
92
}
91
93
92
94
/**
@@ -200,12 +202,12 @@ class ProxyStorage implements IProxy {
200
202
method : method ,
201
203
headers : headers ,
202
204
body : json ,
203
- // FIXME: ts complains ca cannot be undefined
204
205
proxy : this . proxy ,
205
206
encoding : null ,
206
207
gzip : true ,
207
208
timeout : this . timeout ,
208
209
strictSSL : this . strict_ssl ,
210
+ agentOptions : this . agent_options ,
209
211
} ;
210
212
211
213
if ( this . ca ) {
You can’t perform that action at this time.
0 commit comments