Removed extra debugger statements

This commit is contained in:
murgatroid99 2015-01-21 11:58:23 -08:00
parent 4c59f605fe
commit 6bf2447832
2 changed files with 1 additions and 6 deletions

View File

@ -118,11 +118,7 @@ function GrpcClientStream(call, options) {
self.emit('status', event.data);
}, 0);
this.on('finish', function() {
try {
call.writesDone(function() {});
} catch (e) {
debugger;
}
call.writesDone(function() {});
});
/**
* Indicate that reads should start, and start them if the INVOKE_ACCEPTED

View File

@ -193,7 +193,6 @@ function Server(options) {
* @param {grpc.Event} event The event to handle with tag SERVER_RPC_NEW
*/
function handleNewCall(event) {
debugger;
var call = event.call;
var data = event.data;
if (data == null) {