10940: minor: Fix HttpsProxyAgent creation and avoid deprecated call r=lnicola a=lnicola

bors r+

Co-authored-by: Laurențiu Nicola <lnicola@dend.ro>
This commit is contained in:
bors[bot] 2021-12-05 12:12:44 +00:00 committed by GitHub
commit b519a179b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,7 +9,6 @@ import * as zlib from "zlib";
import * as util from "util";
import * as path from "path";
import { log, assert } from "./util";
import * as url from "url";
import * as https from "https";
import { ProxySettings } from "./config";
@ -21,7 +20,7 @@ const REPO = "rust-analyzer";
function makeHttpAgent(proxy: string | null | undefined, options?: https.AgentOptions) {
if (proxy) {
return new HttpsProxyAgent(proxy, { ...options, ...url.parse(proxy) });
return new HttpsProxyAgent({ ...options, ...new URL(proxy) });
} else {
return new https.Agent(options);
}