File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ import normalizePromiseArguments from '../as-promise/normalize-arguments';
31
31
import { PromiseOnly } from '../as-promise/types' ;
32
32
import calculateRetryDelay from './calculate-retry-delay' ;
33
33
34
- const globalDnsCache = new CacheableLookup ( ) ;
34
+ let globalDnsCache : CacheableLookup ;
35
35
36
36
type HttpRequestFunction = typeof httpRequest ;
37
37
type Error = NodeJS . ErrnoException ;
@@ -1762,6 +1762,10 @@ export default class Request extends Duplex implements RequestEvents<Request> {
1762
1762
1763
1763
// `options.dnsCache`
1764
1764
if ( options . dnsCache === true ) {
1765
+ if ( ! globalDnsCache ) {
1766
+ globalDnsCache = new CacheableLookup ( ) ;
1767
+ }
1768
+
1765
1769
options . dnsCache = globalDnsCache ;
1766
1770
} else if ( ! is . undefined ( options . dnsCache ) && ! options . dnsCache . lookup ) {
1767
1771
throw new TypeError ( `Parameter \`dnsCache\` must be a CacheableLookup instance or a boolean, got ${ is ( options . dnsCache ) } ` ) ;
You can’t perform that action at this time.
0 commit comments