Skip to content
Snippets Groups Projects
Unverified Commit ee9a2f73 authored by Daniel Nelson's avatar Daniel Nelson Committed by GitHub
Browse files

Fix duplicate tags when overriding tag (#4056)

parent 648d7ae9
No related branches found
No related tags found
No related merge requests found
...@@ -123,6 +123,7 @@ func (m *metric) AddTag(key, value string) { ...@@ -123,6 +123,7 @@ func (m *metric) AddTag(key, value string) {
if key == tag.Key { if key == tag.Key {
tag.Value = value tag.Value = value
return
} }
m.tags = append(m.tags, nil) m.tags = append(m.tags, nil)
......
...@@ -63,6 +63,7 @@ func TestAddTagOverwrites(t *testing.T) { ...@@ -63,6 +63,7 @@ func TestAddTagOverwrites(t *testing.T) {
value, ok := m.GetTag("host") value, ok := m.GetTag("host")
require.True(t, ok) require.True(t, ok)
require.Equal(t, "example.org", value) require.Equal(t, "example.org", value)
require.Equal(t, 1, len(m.TagList()))
} }
func TestRemoveTagNoEffectOnMissingTags(t *testing.T) { func TestRemoveTagNoEffectOnMissingTags(t *testing.T) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment