summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaolo Polato <paolo.polato@mongodb.com>2023-05-15 20:32:32 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-05-16 00:38:59 +0000
commit75b9a161db646ac7416606b694ded6e024050a53 (patch)
treeb1aeeeb3b0e2eb78a827834639726b4719b440da
parent5416c9384ac9e336f2ceeb89a2b32aae616204a7 (diff)
downloadmongo-75b9a161db646ac7416606b694ded6e024050a53.tar.gz
SERVER-76032 Remove feature flag check from store_historical_placement_data.js
-rw-r--r--jstests/sharding/store_historical_placement_data.js9
1 files changed, 0 insertions, 9 deletions
diff --git a/jstests/sharding/store_historical_placement_data.js b/jstests/sharding/store_historical_placement_data.js
index c76d0a4cefe..5f163bc8dd0 100644
--- a/jstests/sharding/store_historical_placement_data.js
+++ b/jstests/sharding/store_historical_placement_data.js
@@ -408,15 +408,6 @@ function testAddShard() {
newReplicaSet.stopSet();
}
-// TODO SERVER-69106 remove the logic to skip the test execution
-const historicalPlacementDataFeatureFlag = FeatureFlagUtil.isEnabled(
- st.configRS.getPrimary().getDB('admin'), "HistoricalPlacementShardingCatalog");
-if (!historicalPlacementDataFeatureFlag) {
- jsTestLog("Skipping as featureFlagHistoricalPlacementShardingCatalog is disabled");
- st.stop();
- return;
-}
-
jsTest.log('Testing placement entries added by explicit DB creation');
testEnableSharding('explicitlyCreatedDB', shard0);