From c58037b514d1a1f9b92a701f43372dcc6c150796 Mon Sep 17 00:00:00 2001 From: brianc Date: Thu, 24 Feb 2011 21:19:48 -0600 Subject: [PATCH] reduce max number of concurrent clients in stress test since it is over the default --- test/native/stress-tests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/native/stress-tests.js b/test/native/stress-tests.js index 9dce3fe8..45dd1727 100644 --- a/test/native/stress-tests.js +++ b/test/native/stress-tests.js @@ -34,7 +34,7 @@ test('many queries', function() { test('many clients', function() { var clients = []; - for(var i = 0; i < 20; i++) { + for(var i = 0; i < 10; i++) { clients.push(new Client(helper.connectionString())); } clients.forEach(function(client) {