소스 검색

Adds proxy url logging

main
Eric Amodio 2 년 전
부모
커밋
76aeee5664
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. +2
    -0
      src/env/node/fetch.ts

+ 2
- 0
src/env/node/fetch.ts 파일 보기

@ -3,6 +3,7 @@ import * as url from 'url';
import { HttpsProxyAgent } from 'https-proxy-agent';
import fetch, { RequestInfo, RequestInit, Response } from 'node-fetch';
import { configuration } from '../../configuration';
import { Logger } from '../../logger';
export { fetch };
export type { BodyInit, RequestInit, Response } from 'node-fetch';
@ -32,6 +33,7 @@ export function getProxyAgent(strictSSL?: boolean): HttpsProxyAgent | undefined
}
if (proxyUrl) {
Logger.debug(`Using https proxy: ${proxyUrl}`);
return new HttpsProxyAgent({
...url.parse(proxyUrl),
rejectUnauthorized: strictSSL,

불러오는 중...
취소
저장