From 893690f8608f0f523b0a7d397045a67adcc3f597 Mon Sep 17 00:00:00 2001 From: murgatroid99 Date: Mon, 27 Jul 2015 14:56:40 -0700 Subject: Made credentials an explicit required argument to channels --- src/node/test/health_test.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/node/test/health_test.js') diff --git a/src/node/test/health_test.js b/src/node/test/health_test.js index bb700cc46c..93b068be31 100644 --- a/src/node/test/health_test.js +++ b/src/node/test/health_test.js @@ -56,7 +56,8 @@ describe('Health Checking', function() { before(function() { var port_num = healthServer.bind('0.0.0.0:0'); healthServer.start(); - healthClient = new health.Client('localhost:' + port_num); + healthClient = new health.Client('localhost:' + port_num, + grpc.Credentials.createInsecure()); }); after(function() { healthServer.shutdown(); -- cgit v1.2.3