reduce max number of concurrent clients in stress test since it is

over the default
This commit is contained in:
brianc 2011-02-24 21:19:48 -06:00
parent 3233dba5ad
commit c58037b514

View File

@ -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) {