diff --git a/consul/state_store.go b/consul/state_store.go index dbd95f977..ab9afccb4 100644 --- a/consul/state_store.go +++ b/consul/state_store.go @@ -234,9 +234,7 @@ func (s *StateStore) Services() map[string][]string { } tags := services[service] - if !strContains(tags, tag) { - tags = append(tags, tag) - } + tags = append(tags, tag) services[service] = tags }