summaryrefslogtreecommitdiff
path: root/src/mongo/db
diff options
context:
space:
mode:
authorJudah Schvimer <judah@mongodb.com>2016-07-28 18:39:45 -0400
committerJudah Schvimer <judah@mongodb.com>2016-07-28 18:39:45 -0400
commit3a9e531cd088b6c10bec4b1d9d6ea49b3db8ce7a (patch)
tree351ea62faac67588e6e89c72593c38ab6017f123 /src/mongo/db
parent60cf7576bc66c1ca82d9ab25f0b8340c837d05ac (diff)
downloadmongo-3a9e531cd088b6c10bec4b1d9d6ea49b3db8ce7a.tar.gz
SERVER-25320 Temporarily reset default initial sync to use old initial sync
Diffstat (limited to 'src/mongo/db')
-rw-r--r--src/mongo/db/repl/replication_coordinator_external_state_impl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/repl/replication_coordinator_external_state_impl.cpp b/src/mongo/db/repl/replication_coordinator_external_state_impl.cpp
index 07d99b08999..2352a657f15 100644
--- a/src/mongo/db/repl/replication_coordinator_external_state_impl.cpp
+++ b/src/mongo/db/repl/replication_coordinator_external_state_impl.cpp
@@ -107,13 +107,13 @@ const char kBlockingQueueOplogBufferName[] = "inMemoryBlockingQueue";
// repl::SnapshotThread introduces.
MONGO_EXPORT_STARTUP_SERVER_PARAMETER(enableReplSnapshotThread, bool, false);
-MONGO_EXPORT_STARTUP_SERVER_PARAMETER(use3dot2InitialSync, bool, false);
+MONGO_EXPORT_STARTUP_SERVER_PARAMETER(use3dot2InitialSync, bool, true);
// Set this to specify whether to use a collection to buffer the oplog on the destination server
// during initial sync to prevent rolling over the oplog.
MONGO_EXPORT_STARTUP_SERVER_PARAMETER(initialSyncOplogBuffer,
std::string,
- kCollectionOplogBufferName);
+ kBlockingQueueOplogBufferName);
MONGO_INITIALIZER(initialSyncOplogBuffer)(InitializerContext*) {
if ((initialSyncOplogBuffer != kCollectionOplogBufferName) &&