Skip to content

Commit

Permalink
Don't enable keepAlive, in case this is causing #1428
Browse files Browse the repository at this point in the history
  • Loading branch information
gjsjohnmurray committed Sep 20, 2024
1 parent 8de2f80 commit 8f6687d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -306,8 +306,8 @@ export class AtelierAPI {
const http = this._config.https ? httpsModule : httpModule;
if (!this._agent) {
this._agent = new http.Agent({
keepAlive: true,
maxSockets: 10,
//keepAlive: true,
//maxSockets: 10,
rejectUnauthorized: https && vscode.workspace.getConfiguration("http").get("proxyStrictSSL"),
});
}
Expand Down

0 comments on commit 8f6687d

Please sign in to comment.