summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Banala <arun.banala@mongodb.com>2021-08-20 11:33:26 +0100
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-08-24 19:32:34 +0000
commit6dbd76c0f5d2a5fceff2e8ea25bff5be71fc009b (patch)
tree7abf74b5479df5537e8822c5e820a830f55a33af
parentbf87014622155249ccbfc312e80771dcf09ecc4b (diff)
downloadmongo-6dbd76c0f5d2a5fceff2e8ea25bff5be71fc009b.tar.gz
SERVER-58826 [4.2] Disallow compact_keeps_indexes.js and explain_shell_helpers.js to run concurrently on parallel suite
-rw-r--r--jstests/libs/parallelTester.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/jstests/libs/parallelTester.js b/jstests/libs/parallelTester.js
index fa75f509612..a92c4f323a6 100644
--- a/jstests/libs/parallelTester.js
+++ b/jstests/libs/parallelTester.js
@@ -290,12 +290,12 @@ if (typeof _threadInject != "undefined") {
parallelFilesDir + "/profile_sampling.js",
parallelFilesDir + "/profile_update.js",
- // These tests can't be run in parallel because they expect an awaitData cursor to
- // return after maxTimeMS, however this doesn't work if a long running blocking
- // operation is running in parallel.
- // TODO: Remove this restriction as part of SERVER-33942.
+ // These tests can't be run in parallel because they expect a cursor to return after
+ // maxTimeMS, however this doesn't work if a long running blocking operation is running
+ // in parallel.
parallelFilesDir + "/compact_keeps_indexes.js",
parallelFilesDir + "/awaitdata_getmore_cmd.js",
+ parallelFilesDir + "/explain_shell_helpers.js",
// These tests rely on a deterministically refreshable logical session cache. If they
// run in parallel, they could interfere with the cache and cause failures.