diff options
author | Benety Goh <benety@mongodb.com> | 2018-05-15 22:21:15 -0400 |
---|---|---|
committer | Benety Goh <benety@mongodb.com> | 2018-05-15 22:21:15 -0400 |
commit | 63d721812d0d72c31d1144bbe7e46f53041d3733 (patch) | |
tree | 7021d178ac5eced4be66bf58ec2829889e2b6b15 /src/mongo/db/repl/initial_syncer_test.cpp | |
parent | fa3fae04c144048bebf3f4c58e08b7b0c32743e1 (diff) | |
download | mongo-63d721812d0d72c31d1144bbe7e46f53041d3733.tar.gz |
SERVER-32335 remove unused InitialSyncerOptions::batchLimits
Diffstat (limited to 'src/mongo/db/repl/initial_syncer_test.cpp')
-rw-r--r-- | src/mongo/db/repl/initial_syncer_test.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mongo/db/repl/initial_syncer_test.cpp b/src/mongo/db/repl/initial_syncer_test.cpp index 5a6df37ba4d..97e27678f80 100644 --- a/src/mongo/db/repl/initial_syncer_test.cpp +++ b/src/mongo/db/repl/initial_syncer_test.cpp @@ -320,8 +320,6 @@ protected: InitialSyncerOptions options; options.initialSyncRetryWait = Milliseconds(1); - options.batchLimits.bytes = 512 * 1024 * 1024U; - options.batchLimits.ops = 5000U; options.getMyLastOptime = [this]() { return _myLastOpTime; }; options.setMyLastOptime = [this](const OpTime& opTime, ReplicationCoordinator::DataConsistency consistency) { |