diff options
author | Gregory Wlodarek <gregory.wlodarek@mongodb.com> | 2019-01-23 10:48:15 -0500 |
---|---|---|
committer | Gregory Wlodarek <gregory.wlodarek@mongodb.com> | 2019-01-24 22:37:20 -0500 |
commit | ec4520d72b2a4ff6ba980e913c988b11e7d188a4 (patch) | |
tree | 97cabc080446860c2d785011ed256f6a6335e5d4 /jstests/sharding/libs | |
parent | 5fb83f78b6740dbe3a771735e3629fec2a854a1d (diff) | |
download | mongo-ec4520d72b2a4ff6ba980e913c988b11e7d188a4.tar.gz |
SERVER-38506 Create a cluster setIndexCommitQuorum command to parallel createIndexes
Diffstat (limited to 'jstests/sharding/libs')
-rw-r--r-- | jstests/sharding/libs/last_stable_mongos_commands.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/jstests/sharding/libs/last_stable_mongos_commands.js b/jstests/sharding/libs/last_stable_mongos_commands.js index 6072600450a..fdd1bc0fa4a 100644 --- a/jstests/sharding/libs/last_stable_mongos_commands.js +++ b/jstests/sharding/libs/last_stable_mongos_commands.js @@ -15,4 +15,5 @@ const commandsRemovedFromMongosIn42 = [ // These commands were added in mongos 4.2, so will not appear in the listCommands output of a 4.0 // mongos. We will allow these commands to have a test defined without always existing on the mongos // being used. -const commandsAddedToMongosIn42 = ['abortTransaction', 'commitTransaction', 'dropConnections']; +const commandsAddedToMongosIn42 = + ['abortTransaction', 'commitTransaction', 'dropConnections', 'setIndexCommitQuorum']; |