Fixed typo

This commit is contained in:
murgatroid99 2015-01-13 16:03:16 -08:00
parent bc7ff9ffe6
commit 4a8b214c54
2 changed files with 2 additions and 1 deletions

View File

@ -73,6 +73,7 @@ function GrpcServerStream(call, options) {
* @param {Error} err The error object
*/
function setStatus(err) {
console.log('Server setting status to', err);
var code = grpc.status.INTERNAL;
var details = 'Unknown Error';

View File

@ -105,7 +105,7 @@ var MathClient = makeConstructor({
client_stream: true,
server_stream: true
}
}, '/Math');
}, '/Math/');
/**
* Channel to use to make requests to a running server.