summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPol PiƱol Castuera <67922619+PolPinol@users.noreply.github.com>2022-07-18 13:06:40 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-07-18 13:44:32 +0000
commit6cb8627b1a462904427c651b0a4b64375cea8a31 (patch)
treeab4888239ebd17195d6d8ba7566f47997336b9ef
parent30e9886c8feaf56585a0fed88e2132e85f87223a (diff)
downloadmongo-6cb8627b1a462904427c651b0a4b64375cea8a31.tar.gz
SERVER-68077 Modify the test to not run on multiversion suite
-rw-r--r--jstests/sharding/cluster_chunks_resize_on_downgrade.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/jstests/sharding/cluster_chunks_resize_on_downgrade.js b/jstests/sharding/cluster_chunks_resize_on_downgrade.js
index a7a5656443c..c947f1f5b74 100644
--- a/jstests/sharding/cluster_chunks_resize_on_downgrade.js
+++ b/jstests/sharding/cluster_chunks_resize_on_downgrade.js
@@ -2,8 +2,7 @@
* Tests that chunks are re-split upon downgrade from v6.0.
*
* @tags: [
- * requires_fcv_60,
- * __TEMPORARILY_DISABLED__,
+ * requires_fcv_61,
* ]
*/
@@ -38,7 +37,7 @@ assert.commandWorked(bulk.execute());
const numChunksBeforeDowngrade = findChunksUtil.countChunksForNs(st.config, nss);
-assert.commandWorked(db.adminCommand({setFeatureCompatibilityVersion: lastContinuousFCV}));
+assert.commandWorked(db.adminCommand({setFeatureCompatibilityVersion: lastLTSFCV}));
const numChunksAfterDowngrade = findChunksUtil.countChunksForNs(st.config, nss);
jsTest.log("Number of chunks: before downgrade = " + numChunksBeforeDowngrade +