From af9fb455f0ab8f29701da0e8c8d7b6bb862e7c70 Mon Sep 17 00:00:00 2001 From: Matt Broadstone Date: Wed, 30 Oct 2019 16:10:50 -0400 Subject: [PATCH] fix(sdam): `minHeartbeatIntervalMS` => `minHeartbeatFrequencyMS` --- lib/core/sdam/topology.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/sdam/topology.js b/lib/core/sdam/topology.js index 35f241144e1..007c8ab9baf 100644 --- a/lib/core/sdam/topology.js +++ b/lib/core/sdam/topology.js @@ -144,7 +144,7 @@ class Topology extends EventEmitter { ), serverSelectionTimeoutMS: options.serverSelectionTimeoutMS, heartbeatFrequencyMS: options.heartbeatFrequencyMS, - minHeartbeatIntervalMS: options.minHeartbeatIntervalMS, + minHeartbeatFrequencyMS: options.minHeartbeatFrequencyMS, // allow users to override the cursor factory Cursor: options.cursorFactory || CoreCursor, // the bson parser