From 176bc411fcd800ec0ee10f09ffc43d87dd4013a1 Mon Sep 17 00:00:00 2001 From: zhouyonggao <1971162852@qq.com> Date: Sat, 20 Dec 2025 15:12:20 +0800 Subject: [PATCH] =?UTF-8?q?chore(grpc):=20=E7=A7=BB=E9=99=A4=20proto3=20?= =?UTF-8?q?=E5=8F=AF=E9=80=89=E9=A1=B9=E7=94=9F=E6=88=90=E6=A0=87=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 从 Makefile 中移除 `--experimental_allow_proto3_optional` 标志,以简化 proto 文件生成过程并确保与最新的 gRPC 兼容性。 --- grpc/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/grpc/Makefile b/grpc/Makefile index a67a935..d5e85fc 100644 --- a/grpc/Makefile +++ b/grpc/Makefile @@ -19,7 +19,6 @@ endif # generate api proto generate: protoc --proto_path=./ \ - --experimental_allow_proto3_optional \ --proto_path=./third_party \ --go_out=paths=source_relative:./ \ --go-http_out=paths=source_relative:./ \