mirror of https://github.com/grpc/grpc-node.git
Removed extra debugger statements
This commit is contained in:
parent
4c59f605fe
commit
6bf2447832
|
|
@ -118,11 +118,7 @@ function GrpcClientStream(call, options) {
|
||||||
self.emit('status', event.data);
|
self.emit('status', event.data);
|
||||||
}, 0);
|
}, 0);
|
||||||
this.on('finish', function() {
|
this.on('finish', function() {
|
||||||
try {
|
|
||||||
call.writesDone(function() {});
|
call.writesDone(function() {});
|
||||||
} catch (e) {
|
|
||||||
debugger;
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
/**
|
/**
|
||||||
* Indicate that reads should start, and start them if the INVOKE_ACCEPTED
|
* 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
|
* @param {grpc.Event} event The event to handle with tag SERVER_RPC_NEW
|
||||||
*/
|
*/
|
||||||
function handleNewCall(event) {
|
function handleNewCall(event) {
|
||||||
debugger;
|
|
||||||
var call = event.call;
|
var call = event.call;
|
||||||
var data = event.data;
|
var data = event.data;
|
||||||
if (data == null) {
|
if (data == null) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue