Skip to content

Commit

Permalink
Fixing lint error
Browse files Browse the repository at this point in the history
Signed-off-by: John <dorman@overlooked.us>
  • Loading branch information
boostchicken authored and jpkrohling committed Jan 18, 2022
1 parent 061e9d3 commit 10bdebf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/coreinternal/processor/filterspan/filterspan.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ func (mp *propertiesMatcher) MatchSpan(span pdata.Span, resource pdata.Resource,
// Check resource and spans for service.name
serviceName, found := serviceNameForResource(resource)
if !found {
serviceName, found = serviceNameForSpan(span)
serviceName, _ = serviceNameForSpan(span)
}
if !mp.serviceFilters.Matches(serviceName) {
return false
Expand Down

0 comments on commit 10bdebf

Please sign in to comment.