Merge branch 'updateProto' into 'main'

update health proto file

See merge request v3/service/auth!47
This commit is contained in:
Sylvain Briat 2023-07-20 12:43:14 +00:00
commit 66bfa89e8f
1 changed files with 1 additions and 1 deletions

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;
}