Skip to content

Commit

Permalink
fix: Fixes span name of serializeRounTripper (#13541)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyriltovena committed Jul 17, 2024
1 parent a03e3d3 commit 4451d56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/querier/queryrange/serialize.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func NewSerializeRoundTripper(next queryrangebase.Handler, codec queryrangebase.

func (rt *serializeRoundTripper) RoundTrip(r *http.Request) (*http.Response, error) {
ctx := r.Context()
sp, ctx := opentracing.StartSpanFromContext(ctx, "limitedRoundTripper.do")
sp, ctx := opentracing.StartSpanFromContext(ctx, "serializeRoundTripper.do")
defer sp.Finish()

request, err := rt.codec.DecodeRequest(ctx, r, nil)
Expand Down

0 comments on commit 4451d56

Please sign in to comment.