From 5445c2a2ffec9cb4c87529e7afdf87737ccfba13 Mon Sep 17 00:00:00 2001 From: Bert Verhelst Date: Sun, 10 Oct 2021 18:41:29 +0200 Subject: [PATCH] fix(monitor): revert unintentional change to comment --- server/model/monitor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/model/monitor.js b/server/model/monitor.js index 094b1c69..21d36000 100644 --- a/server/model/monitor.js +++ b/server/model/monitor.js @@ -152,7 +152,7 @@ class Monitor extends BeanModel { ...(this.headers ? JSON.parse(this.headers) : {}), }, httpsAgent: new https.Agent({ - maxCachedSessions: 0, // Use "{}"om agent to disable session reuse (https://github.com/nodejs/node/issues/3940) + maxCachedSessions: 0, // Use Custom agent to disable session reuse (https://github.com/nodejs/node/issues/3940) rejectUnauthorized: ! this.getIgnoreTls(), }), maxRedirects: this.maxredirects,