Merge pull request #903 from cjihrig/timeout

grpc-js: disable http2 server timeout
This commit is contained in:
Michael Lumish 2019-06-04 12:04:32 -07:00 committed by GitHub
commit 2b1a6756f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -202,6 +202,7 @@ export class Server {
this.http2Server = http2.createServer();
}
this.http2Server.setTimeout(0, noop);
this._setupHandlers();
function onError(err: Error): void {