diff options
author | Charlie Swanson <charlie.swanson@mongodb.com> | 2017-03-31 14:27:59 -0400 |
---|---|---|
committer | Charlie Swanson <charlie.swanson@mongodb.com> | 2017-04-04 12:09:13 -0400 |
commit | 83bc8601476096bdb666f825c3d516cb7af4cb35 (patch) | |
tree | 529d8dc34769d0e3efab4807ec649ba0375e721f /jstests/libs/parallelTester.js | |
parent | 02e688ef2ea7305cdb36403b95793c42e7bfaa78 (diff) | |
download | mongo-83bc8601476096bdb666f825c3d516cb7af4cb35.tar.gz |
SERVER-28411 Avoid adjusting log rate while using getLog command
Diffstat (limited to 'jstests/libs/parallelTester.js')
-rw-r--r-- | jstests/libs/parallelTester.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/jstests/libs/parallelTester.js b/jstests/libs/parallelTester.js index 372e604c4ef..411ac2518cc 100644 --- a/jstests/libs/parallelTester.js +++ b/jstests/libs/parallelTester.js @@ -253,7 +253,12 @@ if (typeof _threadInject != "undefined") { parallelFilesDir + "/profile_parallel_collection_scan.js", parallelFilesDir + "/profile_repair_cursor.js", parallelFilesDir + "/profile_sampling.js", - parallelFilesDir + "/profile_update.js" + parallelFilesDir + "/profile_update.js", + + // These tests use getLog to examine the slow query logs. Tests which examine the slow + // query logs can't be run concurrently with tests that affect the profile sampling + // rate, since that also impacts which operations get logged. + parallelFilesDir + "/getlog2.js", ]; var serialTests = makeKeys(serialTestsArr); |