Jordan Worner

Results 3 comments of Jordan Worner

@murgatroid99 after looking further it looks like grpc-js is catching that error [here](https://github.com/grpc/grpc-node/blob/%40grpc/grpc-js%401.0.3/packages/grpc-js/src/server-call.ts#L694). The error is only being emitting to the `ServerReadableStreamImpl` stream, the underlying `Http2ServerCallStream` stream is still continuing...

@murgatroid99 thank you for jumping on this so quickly. Just for reference I also tested consuming the call using async iterators. ``` async exampleClientStream(call, callback) { const messages = [];...

I was actually just about to reply and say I tested the changes from your pull request and after throwing an error in the `data` handler for a client streaming...