diff --git a/server.js b/server.js index 7f3e0259..2704c68f 100644 --- a/server.js +++ b/server.js @@ -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'; diff --git a/test/math_client_test.js b/test/math_client_test.js index 51a3401d..591e865d 100644 --- a/test/math_client_test.js +++ b/test/math_client_test.js @@ -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.