Removed extra debugger statements

pull/145/head
murgatroid99 10 years ago
parent b6ab1b477f
commit 0397061095
  1. 6
      src/node/client.js
  2. 1
      src/node/server.js

@ -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

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

Loading…
Cancel
Save