From 688ebab84961ae82863f811fa772cfd26fbadc0e Mon Sep 17 00:00:00 2001 From: Niels Van den Broeck <39048448+niels-van-den-broeck@users.noreply.github.com> Date: Wed, 29 May 2024 15:04:47 +0200 Subject: [PATCH] fix(connection config): remove keepAliveInitialDelay default value (#2712) --- lib/connection_config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/connection_config.js b/lib/connection_config.js index a18b30b330..0709e83695 100644 --- a/lib/connection_config.js +++ b/lib/connection_config.js @@ -118,7 +118,7 @@ class ConnectionConfig { this.trace = options.trace !== false; this.stringifyObjects = options.stringifyObjects || false; this.enableKeepAlive = options.enableKeepAlive !== false; - this.keepAliveInitialDelay = options.keepAliveInitialDelay || 0; + this.keepAliveInitialDelay = options.keepAliveInitialDelay; if ( options.timezone && !/^(?:local|Z|[ +-]\d\d:\d\d)$/.test(options.timezone)