From 2319460904062014c6ab901af3904ee291af6a6c Mon Sep 17 00:00:00 2001 From: Ryan Uber Date: Fri, 17 Oct 2014 14:29:12 -0700 Subject: [PATCH] agent: initialize local consul service tags to fix service sync --- command/agent/agent.go | 1 + 1 file changed, 1 insertion(+) diff --git a/command/agent/agent.go b/command/agent/agent.go index 5eb17468e4..c3b34f5465 100644 --- a/command/agent/agent.go +++ b/command/agent/agent.go @@ -120,6 +120,7 @@ func Create(config *Config, logOutput io.Writer) (*Agent, error) { Service: consul.ConsulServiceName, ID: consul.ConsulServiceID, Port: agent.config.Ports.Server, + Tags: []string{}, } agent.state.AddService(&consulService) } else {