summaryrefslogtreecommitdiff
path: root/jstests/sharding/libs/last_lts_mongod_commands.js
blob: 23a565d6a983653d2952203d51adf8e06b37d082 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// These commands were removed from mongod since the last LTS version, but will still appear in the
// listCommands output of a last LTS version mongod. To increase test coverage and allow us
// to run on same- and mixed-version suites, we allow these commands to have a test defined without
// always existing on the servers being used.
const commandsRemovedFromMongodSinceLastLTS = [
    "_configsvrCommitChunkMerge",
    "_configsvrCreateCollection",
    "_configsvrRepairShardedCollectionChunksHistory",
    "mapreduce.shardedfinish",
];
// These commands were added in mongod since the last LTS version, so will not appear in the
// listCommands output of a last LTS version mongod. We will allow these commands to have a
// test defined without always existing on the mongod being used.
const commandsAddedToMongodSinceLastLTS = [
    "rotateCertificates",
    "setUserWriteBlockMode",
];