summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Carey <jcarey@argv.me>2016-02-04 15:33:57 -0500
committerRamon Fernandez <ramon@mongodb.com>2016-02-09 19:24:45 -0500
commitabe971536f732f7cb1387723d8d60a9300ffc6e3 (patch)
tree523d28a862ed3b29c23fbe8d8548832056d4338e
parentcbf7d52a1d5b25c2d8acaed39db19cda3df3b8a7 (diff)
downloadmongo-abe971536f732f7cb1387723d8d60a9300ffc6e3.tar.gz
SERVER-22475 Reduce concurrency in manyclients.js
Drop from 100 to 50 to lower the memory pressure. (cherry picked from commit 475e90668351d6f4719e1fbce7cf54f2fdfe52da)
-rw-r--r--jstests/parallel/manyclients.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/parallel/manyclients.js b/jstests/parallel/manyclients.js
index cd67e8c3f0f..4b105c162ba 100644
--- a/jstests/parallel/manyclients.js
+++ b/jstests/parallel/manyclients.js
@@ -11,10 +11,10 @@ t = new ParallelTester();
// Reducing the number of threads to 100 because of WT-1989
numThreads = 100;
-buildInfo = db.adminCommand( "buildInfo" ).buildEnvironment
+buildInfo = db.adminCommand( "buildInfo" )
if ( buildInfo.bits < 64 ||
- buildInfo.target_os != "linux" ||
+ buildInfo.buildEnvironment.target_os != "linux" ||
buildInfo.debug ) {
numThreads = 50;
}