Skip to content

Commit 12b3295

Browse files
pavan168Pavan WelihindaDigitalBrainJS
authored
fix(http): fixed proxy-from-env module import (#5222)
Co-authored-by: Pavan Welihinda <[email protected]> Co-authored-by: Dmitriy Mozgovoy <[email protected]>
1 parent fc6fa69 commit 12b3295

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/adapters/http.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import utils from './../utils.js';
44
import settle from './../core/settle.js';
55
import buildFullPath from '../core/buildFullPath.js';
66
import buildURL from './../helpers/buildURL.js';
7-
import {getProxyForUrl} from 'proxy-from-env';
7+
import proxyFromEnv from 'proxy-from-env';
88
import http from 'http';
99
import https from 'https';
1010
import util from 'util';
@@ -83,7 +83,7 @@ function dispatchBeforeRedirect(options, responseDetails) {
8383
function setProxy(options, configProxy, location) {
8484
let proxy = configProxy;
8585
if (!proxy && proxy !== false) {
86-
const proxyUrl = getProxyForUrl(location);
86+
const proxyUrl = proxyFromEnv.getProxyForUrl(location);
8787
if (proxyUrl) {
8888
proxy = new URL(proxyUrl);
8989
}

0 commit comments

Comments
 (0)