Skip to content

Commit

Permalink
Fixed issue in chained tag filter
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Elliott <number101010@gmail.com>
  • Loading branch information
joe-elliott committed Nov 11, 2019
1 parent 0e39205 commit 7e68f80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/storage/cassandra/spanstore/dbmodel/tag_filter.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func (tf ChainedTagFilter) FilterTags(span *model.Span, tags model.KeyValues) mo
// FilterLogFields calls each FilterLogFields
func (tf ChainedTagFilter) FilterLogFields(span *model.Span, logFields model.KeyValues) model.KeyValues {
for _, f := range tf {
logFields = f.FilterProcessTags(span, logFields)
logFields = f.FilterLogFields(span, logFields)
}
return logFields
}
Expand Down

0 comments on commit 7e68f80

Please sign in to comment.