diff options
author | Gregory Wlodarek <gregory.wlodarek@mongodb.com> | 2019-04-11 08:11:03 -0400 |
---|---|---|
committer | Gregory Wlodarek <gregory.wlodarek@mongodb.com> | 2019-04-11 08:21:33 -0400 |
commit | a3ade6d9e919f3bd578c50f6db62da40861dfb59 (patch) | |
tree | 2cc03cb79bd3abdfd148c403aa600c71e64e3cac /jstests/libs | |
parent | 9cf12644d6544c004f12bfc6e5f00d0d1681735e (diff) | |
download | mongo-a3ade6d9e919f3bd578c50f6db62da40861dfb59.tar.gz |
SERVER-40436 Ignore the 'flags' field from the 'create' command
Diffstat (limited to 'jstests/libs')
-rw-r--r-- | jstests/libs/override_methods/causally_consistent_index_builds.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/jstests/libs/override_methods/causally_consistent_index_builds.js b/jstests/libs/override_methods/causally_consistent_index_builds.js index 613886431c7..ec20a87f588 100644 --- a/jstests/libs/override_methods/causally_consistent_index_builds.js +++ b/jstests/libs/override_methods/causally_consistent_index_builds.js @@ -24,9 +24,7 @@ return res; } - // The 'usePowerOf2Sizes' option is ignored by the server so no actual collection - // modification takes place. - let collModCmd = {collMod: commandObj[commandName], usePowerOf2Sizes: true}; + let collModCmd = {collMod: commandObj[commandName]}; let collModRes = func.apply(conn, makeFuncArgs(collModCmd)); // If a follow-up collMod fails, another command was likely able to execute after the |