update health proto file

This commit is contained in:
sbriat
2023-07-20 14:39:16 +02:00
parent 8b8cda0d01
commit 250456b33c

View File

@@ -2,7 +2,6 @@ syntax = "proto3";
package health;
service Health {
rpc Check(HealthCheckRequest) returns (HealthCheckResponse);
}
@@ -18,4 +17,5 @@ message HealthCheckResponse {
NOT_SERVING = 2;
}
ServingStatus status = 1;
string message = 2;
}