summaryrefslogtreecommitdiff
path: root/jstests/multiVersion
diff options
context:
space:
mode:
authorJordi Olivares Provencio <jordi.olivares-provencio@mongodb.com>2022-02-22 10:03:11 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-02-22 11:02:33 +0000
commitb6485b14e3749d1c6bc506fa5a5a3fd9b169af74 (patch)
treeeecdf9b98f6d6ad9142cdbbb5abd4aa2b96118bc /jstests/multiVersion
parent0b1de7ae94d9d20532597ec8d3e01d27cb6ce82b (diff)
downloadmongo-b6485b14e3749d1c6bc506fa5a5a3fd9b169af74.tar.gz
SERVER-63866 Modify test to use last-continuous
Diffstat (limited to 'jstests/multiVersion')
-rw-r--r--jstests/multiVersion/targetedTestsLastContinuousFeatures/clustered_collection_resumable_index.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/jstests/multiVersion/targetedTestsLastContinuousFeatures/clustered_collection_resumable_index.js b/jstests/multiVersion/targetedTestsLastContinuousFeatures/clustered_collection_resumable_index.js
index 3675ab30745..ce716350e75 100644
--- a/jstests/multiVersion/targetedTestsLastContinuousFeatures/clustered_collection_resumable_index.js
+++ b/jstests/multiVersion/targetedTestsLastContinuousFeatures/clustered_collection_resumable_index.js
@@ -12,15 +12,16 @@
'use strict';
const defaultOptions = {noCleanData: true};
- let mongodOptions5dot1 = Object.extend(
- {binVersion: '5.2', setParameter: 'featureFlagClusteredIndexes=true'}, defaultOptions);
+ let mongodOptionsLastContinuous = Object.extend(
+ {binVersion: 'last-continuous', setParameter: 'featureFlagClusteredIndexes=true'},
+ defaultOptions);
let mongodOptionsLatest = Object.extend({binVersion: 'latest'}, defaultOptions);
load("jstests/noPassthrough/libs/index_build.js");
const dbName = "test";
- const rst = new ReplSetTest({nodes: 1, nodeOptions: mongodOptions5dot1});
+ const rst = new ReplSetTest({nodes: 1, nodeOptions: mongodOptionsLastContinuous});
rst.startSet();
rst.initiate();