We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41d5294 commit 0ea68a9Copy full SHA for 0ea68a9
bin/helpers/helper.js
@@ -441,6 +441,7 @@ exports.truncateString = (field, truncateSizeInBytes) => {
441
exports.setAxiosProxy = (axiosConfig) => {
442
if (process.env.HTTP_PROXY || process.env.HTTPS_PROXY) {
443
const httpProxy = process.env.HTTP_PROXY || process.env.HTTPS_PROXY
444
+ axiosConfig.proxy = false;
445
axiosConfig.httpsAgent = new HttpsProxyAgent(httpProxy);
446
};
447
0 commit comments