summaryrefslogtreecommitdiff
path: root/src/mongo/db/repl
diff options
context:
space:
mode:
authorPierlauro Sciarelli <pierlauro.sciarelli@mongodb.com>2022-10-13 15:39:30 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-10-13 17:04:27 +0000
commitb412930c936a42cfc63fb07cc9f662dc8432c16d (patch)
treeb57fa4fa0101ec5954484039a0005f87c856a264 /src/mongo/db/repl
parent2cc7da28b9ddd1eb91516a2ba25f7dd67db88ca8 (diff)
downloadmongo-b412930c936a42cfc63fb07cc9f662dc8432c16d.tar.gz
Revert "SERVER-65558 Enable range deleter service feature flag"
This reverts commit faa9a621eb5b40ec830284328bc4ee17f0f51cb9.
Diffstat (limited to 'src/mongo/db/repl')
-rw-r--r--src/mongo/db/repl/replication_coordinator_external_state_impl.cpp5
1 files changed, 1 insertions, 4 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 bdd03bc69fe..677504159fc 100644
--- a/src/mongo/db/repl/replication_coordinator_external_state_impl.cpp
+++ b/src/mongo/db/repl/replication_coordinator_external_state_impl.cpp
@@ -112,7 +112,6 @@
#include "mongo/s/client/shard_registry.h"
#include "mongo/s/cluster_identity_loader.h"
#include "mongo/s/grid.h"
-#include "mongo/s/sharding_feature_flags_gen.h"
#include "mongo/stdx/thread.h"
#include "mongo/transport/service_entry_point.h"
#include "mongo/util/assert_util.h"
@@ -952,9 +951,7 @@ void ReplicationCoordinatorExternalStateImpl::_shardingOnTransitionToPrimaryHook
// Note, these must be done after the configOpTime is recovered via
// ShardingStateRecovery::recover above, because they may trigger filtering metadata
// refreshes which should use the recovered configOpTime.
- if (!mongo::feature_flags::gRangeDeleterService.isEnabledAndIgnoreFCV()) {
- migrationutil::resubmitRangeDeletionsOnStepUp(_service);
- }
+ migrationutil::resubmitRangeDeletionsOnStepUp(_service);
migrationutil::resumeMigrationCoordinationsOnStepUp(opCtx);
migrationutil::resumeMigrationRecipientsOnStepUp(opCtx);