From 328f261f34b80b4a24843c9b65883c8cb3184ab3 Mon Sep 17 00:00:00 2001 From: Thomas Jackson Date: Mon, 27 Apr 2020 17:01:50 -0700 Subject: [PATCH] Include secondary protocol flag always This way if you have the value set in config (even as "") it'll get passed down to allow you to override the default config Related to #9006 --- nodeup/pkg/model/protokube.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodeup/pkg/model/protokube.go b/nodeup/pkg/model/protokube.go index 7aa4b80593..1b7052bce7 100644 --- a/nodeup/pkg/model/protokube.go +++ b/nodeup/pkg/model/protokube.go @@ -361,7 +361,7 @@ type ProtokubeFlags struct { GossipListen *string `json:"gossip-listen" flag:"gossip-listen"` GossipSecret *string `json:"gossip-secret" flag:"gossip-secret"` - GossipProtocolSecondary *string `json:"gossip-protocol-secondary" flag:"gossip-protocol-secondary"` + GossipProtocolSecondary *string `json:"gossip-protocol-secondary" flag:"gossip-protocol-secondary" flag-include-empty:"true"` GossipListenSecondary *string `json:"gossip-listen-secondary" flag:"gossip-listen-secondary"` GossipSecretSecondary *string `json:"gossip-secret-secondary" flag:"gossip-secret-secondary"` }