From f128617d2447f137e89e17f596acebf5c1bc744b Mon Sep 17 00:00:00 2001 From: Benety Goh Date: Fri, 23 Sep 2016 15:12:30 -0400 Subject: SERVER-25702 changed oplogFetcherMaxFetcherRestarts default from 10 to 3 --- src/mongo/db/repl/replication_coordinator_external_state_impl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 857e1cb3f6d..6e8a64d8033 100644 --- a/src/mongo/db/repl/replication_coordinator_external_state_impl.cpp +++ b/src/mongo/db/repl/replication_coordinator_external_state_impl.cpp @@ -126,7 +126,7 @@ MONGO_EXPORT_STARTUP_SERVER_PARAMETER(initialSyncOplogBuffer, // Set this to specify maximum number of times the oplog fetcher will consecutively restart the // oplog tailing query on non-cancellation errors. server_parameter_storage_type::value_type - oplogFetcherMaxFetcherRestarts(10); + oplogFetcherMaxFetcherRestarts(3); class ExportedOplogFetcherMaxFetcherRestartsServerParameter : public ExportedServerParameter { public: -- cgit v1.2.1