Reverted change to _write in client.js

pull/1723/head
murgatroid99 10 years ago
parent 6d1a8449d1
commit b4f244f0da
  1. 6
      src/node/src/client.js

@ -80,7 +80,11 @@ function _write(chunk, encoding, callback) {
var batch = {};
batch[grpc.opType.SEND_MESSAGE] = this.serialize(chunk);
this.call.startBatch(batch, function(err, event) {
callback(err);
if (err) {
// Something has gone wrong. Stop writing by failing to call callback
return;
}
callback();
});
}

Loading…
Cancel
Save