summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl/sync_tail.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/repl/sync_tail.h')
-rw-r--r--src/mongo/db/repl/sync_tail.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/repl/sync_tail.h b/src/mongo/db/repl/sync_tail.h
index ec133599bd3..98485782868 100644
--- a/src/mongo/db/repl/sync_tail.h
+++ b/src/mongo/db/repl/sync_tail.h
@@ -115,7 +115,7 @@ public:
class OpQueue {
public:
OpQueue() : _bytes(0) {
- _batch.reserve(replBatchLimitOperations);
+ _batch.reserve(replBatchLimitOperations.load());
}
size_t getBytes() const {
@@ -214,7 +214,7 @@ public:
*/
OldThreadPool* getWriterPool();
- static std::atomic<int> replBatchLimitOperations; // NOLINT (server param must use std::atomic)
+ static AtomicInt32 replBatchLimitOperations;
protected:
static const unsigned int replBatchLimitBytes = 100 * 1024 * 1024;