update health.proto

This commit is contained in:
iamqizhao
2015-09-16 22:16:10 -07:00
parent 5feca5d7a5
commit 29948ca05c
2 changed files with 2 additions and 2 deletions

View File

@ -48,7 +48,7 @@ func (x HealthCheckResponse_ServingStatus) String() string {
}
type HealthCheckRequest struct {
Service string `protobuf:"bytes,2,opt,name=service" json:"service,omitempty"`
Service string `protobuf:"bytes,1,opt,name=service" json:"service,omitempty"`
}
func (m *HealthCheckRequest) Reset() { *m = HealthCheckRequest{} }

View File

@ -3,7 +3,7 @@ syntax = "proto3";
package grpc.health.v1alpha;
message HealthCheckRequest {
string service = 2;
string service = 1;
}
message HealthCheckResponse {