From 86d6291925b278efcc4bee91554e95d552d63b2e Mon Sep 17 00:00:00 2001 From: murgatroid99 Date: Thu, 10 Oct 2019 14:48:14 -0700 Subject: [PATCH] 1000 concurrent calls is excessive --- test/api/interop_extra_test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/api/interop_extra_test.js b/test/api/interop_extra_test.js index d22621fe..a4cf9875 100644 --- a/test/api/interop_extra_test.js +++ b/test/api/interop_extra_test.js @@ -79,7 +79,7 @@ describe(`${anyGrpc.clientName} client -> ${anyGrpc.serverName} server`, functio server.forceShutdown(); }); it('Should be able to start many concurrent calls', function(done) { - const callCount = 1000; + const callCount = 100; done = multiDone(done, callCount); for (let i = 0; i < callCount; i++) { client.unaryCall({}, (error, result) => {