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
This commit is contained in:
Thomas Jackson 2020-04-27 17:01:50 -07:00
parent f00e538bfd
commit 328f261f34
1 changed files with 1 additions and 1 deletions

View File

@ -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"`
}