aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/node/health_check/health.js
diff options
context:
space:
mode:
authorGravatar yang-g <yangg@google.com>2016-02-19 11:05:28 -0800
committerGravatar yang-g <yangg@google.com>2016-02-19 11:08:16 -0800
commitaea13f1c8519d7a0e3aea3837fd9fc18e68ee9b4 (patch)
treef76679eb61cd72d1972641efb06218692f9090ec /src/node/health_check/health.js
parent49d297a29c0ce9235fdb5d2e99a7ecd75d76eee3 (diff)
global replace health check proto v1alpha to v1
Diffstat (limited to 'src/node/health_check/health.js')
-rw-r--r--src/node/health_check/health.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/node/health_check/health.js b/src/node/health_check/health.js
index 1a2c036687..6ab4157183 100644
--- a/src/node/health_check/health.js
+++ b/src/node/health_check/health.js
@@ -1,6 +1,6 @@
/*
*
- * Copyright 2015, Google Inc.
+ * Copyright 2015-2016, Google Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -38,9 +38,9 @@ var grpc = require('../');
var _ = require('lodash');
var health_proto = grpc.load(__dirname +
- '/../../proto/grpc/health/v1alpha/health.proto');
+ '/../../proto/grpc/health/v1/health.proto');
-var HealthClient = health_proto.grpc.health.v1alpha.Health;
+var HealthClient = health_proto.grpc.health.v1.Health;
function HealthImplementation(statusMap) {
this.statusMap = _.clone(statusMap);