fix the indent
This commit is contained in:
@ -5,7 +5,8 @@ package grpc.health.v1alpha;
|
|||||||
message HealthCheckRequest {
|
message HealthCheckRequest {
|
||||||
string host = 1;
|
string host = 1;
|
||||||
string service = 2;
|
string service = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
message HealthCheckResponse {
|
message HealthCheckResponse {
|
||||||
enum ServingStatus {
|
enum ServingStatus {
|
||||||
UNKNOWN = 0;
|
UNKNOWN = 0;
|
||||||
@ -13,7 +14,8 @@ message HealthCheckResponse {
|
|||||||
NOT_SERVING = 2;
|
NOT_SERVING = 2;
|
||||||
}
|
}
|
||||||
ServingStatus status = 1;
|
ServingStatus status = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
service HealthCheck{
|
service HealthCheck{
|
||||||
rpc Check( HealthCheckRequest) returns ( HealthCheckResponse);
|
rpc Check(HealthCheckRequest) returns (HealthCheckResponse);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user