From c030135757e0406fce87155d7f11afedf1247075 Mon Sep 17 00:00:00 2001 From: Steffen Smolka Date: Fri, 9 Aug 2024 17:11:49 +0000 Subject: [PATCH] Remove accidental optional keyword. Fixes https://github.com/p4lang/p4runtime/issues/482#issuecomment-2108305494 Signed off by Steffen Smolka --- proto/p4/config/v1/p4info.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/p4/config/v1/p4info.proto b/proto/p4/config/v1/p4info.proto index 3246f986..f590cbc6 100644 --- a/proto/p4/config/v1/p4info.proto +++ b/proto/p4/config/v1/p4info.proto @@ -311,7 +311,7 @@ message ActionProfile { // single selector group respectively. message SumOfMembers { // the maximum weight of each individual member in a group. - optional int32 max_member_weight = 1; + int32 max_member_weight = 1; } // specifies the semantics of `size` and `max_group_size` above