Skip to content

Commit

Permalink
Resolves #6001
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Danis <cdanis@wikimedia.org>
  • Loading branch information
cdanis committed Oct 23, 2024
1 parent fcb6ba2 commit 630b418
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/query/app/querysvc/adjusters.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ import (
func StandardAdjusters(maxClockSkewAdjust time.Duration) []adjuster.Adjuster {
return []adjuster.Adjuster{
adjuster.ZipkinSpanIDUniquifier(),
adjuster.ClockSkew(maxClockSkewAdjust),
adjuster.SortTagsAndLogFields(),
adjuster.DedupeBySpanHash(), // requires SortTagsAndLogFields for deterministic results
adjuster.ClockSkew(maxClockSkewAdjust), // adds warnings (which affect SpanHash) on dupe span IDs
adjuster.IPTagAdjuster(),
adjuster.OTelTagAdjuster(),
adjuster.SortTagsAndLogFields(),
adjuster.DedupeBySpanHash(), // requires SortTagsAndLogFields for deterministic results
adjuster.SpanReferences(),
adjuster.ParentReference(),
}
Expand Down

0 comments on commit 630b418

Please sign in to comment.