1000 concurrent calls is excessive

This commit is contained in:
murgatroid99 2019-10-10 14:48:14 -07:00
parent e7ca0da409
commit 86d6291925
1 changed files with 1 additions and 1 deletions

View File

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