From 33949ceadae8bf142aadddfedefcee5837a8ca5b Mon Sep 17 00:00:00 2001 From: Arnaud Rebillout Date: Tue, 12 Nov 2019 01:18:22 +0000 Subject: [PATCH] libnetwork_proto_no_unrecognized_all Fix this by setting goproto_unrecognized_all=false which suppresses this field. Upstream doesn't have the problem because they have pinned an older version of gogo/protobuf: https://github.com/docker/libnetwork/pull/2242 Author: Felix Geyer Gbp-Pq: Name libnetwork_proto_no_unrecognized_all.patch --- libnetwork/agent.proto | 1 + 1 file changed, 1 insertion(+) diff --git a/libnetwork/agent.proto b/libnetwork/agent.proto index f9c46c7a..a3791a14 100644 --- a/libnetwork/agent.proto +++ b/libnetwork/agent.proto @@ -10,6 +10,7 @@ option (gogoproto.stringer_all) = true; option (gogoproto.gostring_all) = true; option (gogoproto.sizer_all) = true; option (gogoproto.goproto_stringer_all) = false; +option (gogoproto.goproto_unrecognized_all) = false; // EndpointRecord specifies all the endpoint specific information that // needs to gossiped to nodes participating in the network. -- 2.30.2