Skip to content

Commit 688ebab

Browse files
fix(connection config): remove keepAliveInitialDelay default value (#2712)
1 parent acc7993 commit 688ebab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/connection_config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ class ConnectionConfig {
118118
this.trace = options.trace !== false;
119119
this.stringifyObjects = options.stringifyObjects || false;
120120
this.enableKeepAlive = options.enableKeepAlive !== false;
121-
this.keepAliveInitialDelay = options.keepAliveInitialDelay || 0;
121+
this.keepAliveInitialDelay = options.keepAliveInitialDelay;
122122
if (
123123
options.timezone &&
124124
!/^(?:local|Z|[ +-]\d\d:\d\d)$/.test(options.timezone)

0 commit comments

Comments
 (0)