From 7da12d39325ad03d27fb1b0952842d2e2f73f60b Mon Sep 17 00:00:00 2001 From: PARK BYUNG JUN Date: Thu, 4 Aug 2022 08:51:02 +0000 Subject: [PATCH] error message is required --- proto/protobuf/rpc/error.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/protobuf/rpc/error.proto b/proto/protobuf/rpc/error.proto index cd8bcea..d30edf6 100644 --- a/proto/protobuf/rpc/error.proto +++ b/proto/protobuf/rpc/error.proto @@ -12,7 +12,7 @@ option go_package = "bet.com/protobuf/rpc"; message Error { int32 code = 1; - optional string message = 2; + string message = 2; optional bytes data = 3; }