summaryrefslogtreecommitdiff
path: root/jstests/parallel
diff options
context:
space:
mode:
authorJason Carey <jcarey@argv.me>2016-02-04 15:33:57 -0500
committerJason Carey <jcarey@argv.me>2016-02-05 11:31:06 -0500
commit475e90668351d6f4719e1fbce7cf54f2fdfe52da (patch)
tree66d552e830189774d2e84a77de57a2355ce78da4 /jstests/parallel
parent1ddd9162e8fd7de3b54053093698ef16abce8aa9 (diff)
downloadmongo-475e90668351d6f4719e1fbce7cf54f2fdfe52da.tar.gz
SERVER-22475 Reduce concurrency in manyclients.js
Drop from 100 to 50 to lower the memory pressure.
Diffstat (limited to 'jstests/parallel')
-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;
}