Fix duplicate tags when overriding tag (#4056)

This commit is contained in:
Daniel Nelson 2018-04-20 18:39:31 -07:00 committed by GitHub
parent 648d7ae922
commit ee9a2f73a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -123,6 +123,7 @@ func (m *metric) AddTag(key, value string) {
if key == tag.Key {
tag.Value = value
return
}
m.tags = append(m.tags, nil)

View File

@ -63,6 +63,7 @@ func TestAddTagOverwrites(t *testing.T) {
value, ok := m.GetTag("host")
require.True(t, ok)
require.Equal(t, "example.org", value)
require.Equal(t, 1, len(m.TagList()))
}
func TestRemoveTagNoEffectOnMissingTags(t *testing.T) {