Skip to content

Commit

Permalink
fix(connection config): remove keepAliveInitialDelay default value (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
niels-van-den-broeck committed May 29, 2024
1 parent acc7993 commit 688ebab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/connection_config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 688ebab

Please sign in to comment.