From b7109ccc509ea98e4d141eb83e603cbd3fddbd9c Mon Sep 17 00:00:00 2001 From: niels-van-den-broeck Date: Wed, 29 May 2024 14:33:13 +0200 Subject: [PATCH] fix(connection_config): remove keepAliveInitialDelay default value --- 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)