summaryrefslogtreecommitdiff
path: root/packages/backend/src/core/HttpRequestService.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-09-19 03:11:50 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2022-09-19 03:11:50 +0900
commita2eac9fff67f811ed4ac1a80a88fd1f0eafae6c8 (patch)
tree9c7190e05fe0ffe085646cd194c6c65d47375f83 /packages/backend/src/core/HttpRequestService.ts
parentrevert (diff)
downloadsharkey-a2eac9fff67f811ed4ac1a80a88fd1f0eafae6c8.tar.gz
sharkey-a2eac9fff67f811ed4ac1a80a88fd1f0eafae6c8.tar.bz2
sharkey-a2eac9fff67f811ed4ac1a80a88fd1f0eafae6c8.zip
test
Diffstat (limited to 'packages/backend/src/core/HttpRequestService.ts')
-rw-r--r--packages/backend/src/core/HttpRequestService.ts14
1 files changed, 7 insertions, 7 deletions
diff --git a/packages/backend/src/core/HttpRequestService.ts b/packages/backend/src/core/HttpRequestService.ts
index 21cde12536..f4c00cd259 100644
--- a/packages/backend/src/core/HttpRequestService.ts
+++ b/packages/backend/src/core/HttpRequestService.ts
@@ -15,12 +15,12 @@ export class HttpRequestService {
/**
* Get http non-proxy agent
*/
- #http: http.Agent;
+ private http: http.Agent;
/**
* Get https non-proxy agent
*/
- #https: https.Agent;
+ private https: https.Agent;
/**
* Get http proxy or non-proxy agent
@@ -42,13 +42,13 @@ export class HttpRequestService {
lookup: false, // nativeのdns.lookupにfallbackしない
});
- this.#http = new http.Agent({
+ this.http = new http.Agent({
keepAlive: true,
keepAliveMsecs: 30 * 1000,
lookup: cache.lookup,
} as http.AgentOptions);
- this.#https = new https.Agent({
+ this.https = new https.Agent({
keepAlive: true,
keepAliveMsecs: 30 * 1000,
lookup: cache.lookup,
@@ -65,7 +65,7 @@ export class HttpRequestService {
scheduling: 'lifo',
proxy: config.proxy,
})
- : this.#http;
+ : this.http;
this.httpsAgent = config.proxy
? new HttpsProxyAgent({
@@ -76,7 +76,7 @@ export class HttpRequestService {
scheduling: 'lifo',
proxy: config.proxy,
})
- : this.#https;
+ : this.https;
}
/**
@@ -86,7 +86,7 @@ export class HttpRequestService {
*/
public getAgentByUrl(url: URL, bypassProxy = false): http.Agent | https.Agent {
if (bypassProxy || (this.config.proxyBypassHosts || []).includes(url.hostname)) {
- return url.protocol === 'http:' ? this.#http : this.#https;
+ return url.protocol === 'http:' ? this.http : this.https;
} else {
return url.protocol === 'http:' ? this.httpAgent : this.httpsAgent;
}