summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands
diff options
context:
space:
mode:
authorTommaso Tocci <tommaso.tocci@mongodb.com>2022-06-10 16:59:55 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-06-10 18:05:23 +0000
commit569d79ea269fd9d21fb91a28691806b65708bd0c (patch)
tree5be9f64122bda0ce1a73fdbcbd8de3ff69a32b48 /src/mongo/db/commands
parent7ad95de6d0d0ff06f5161f7d5e3243b0cdd5e9cc (diff)
downloadmongo-569d79ea269fd9d21fb91a28691806b65708bd0c.tar.gz
SERVER-66934 Remove deprecated CollModCoordinatorPre60Compatible
Diffstat (limited to 'src/mongo/db/commands')
-rw-r--r--src/mongo/db/commands/set_feature_compatibility_version_command.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/mongo/db/commands/set_feature_compatibility_version_command.cpp b/src/mongo/db/commands/set_feature_compatibility_version_command.cpp
index e9884a73b8a..6a75dfef536 100644
--- a/src/mongo/db/commands/set_feature_compatibility_version_command.cpp
+++ b/src/mongo/db/commands/set_feature_compatibility_version_command.cpp
@@ -406,17 +406,6 @@ public:
clearOrphanCountersFromRangeDeletionTasks(opCtx);
}
- // TODO (SERVER-62325): Remove collMod draining mechanism after 6.0 branching.
- if (actualVersion > requestedVersion &&
- requestedVersion < multiversion::FeatureCompatibilityVersion::kVersion_6_0) {
- // No more collMod coordinators will start because we have already switched
- // the FCV value to kDowngrading. Wait for the ongoing collMod coordinators to
- // finish.
- ShardingDDLCoordinatorService::getService(opCtx)
- ->waitForCoordinatorsOfGivenTypeToComplete(
- opCtx, DDLCoordinatorTypeEnum::kCollMod);
- }
-
// TODO SERVER-65077: Remove FCV check once 6.0 is released
if (actualVersion > requestedVersion &&
!gFeatureFlagFLE2.isEnabledOnVersion(requestedVersion)) {