From 250456b33c5032e69116d533bb4f9c9428cbc062 Mon Sep 17 00:00:00 2001 From: sbriat Date: Thu, 20 Jul 2023 14:39:16 +0200 Subject: [PATCH] update health proto file --- src/health.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/health.proto b/src/health.proto index 74e1a4c..556c72b 100644 --- a/src/health.proto +++ b/src/health.proto @@ -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; }