Skip to content

Commit 4451d56

Browse files
authored
fix: Fixes span name of serializeRounTripper (#13541)
1 parent a03e3d3 commit 4451d56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/querier/queryrange/serialize.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ func NewSerializeRoundTripper(next queryrangebase.Handler, codec queryrangebase.
2525

2626
func (rt *serializeRoundTripper) RoundTrip(r *http.Request) (*http.Response, error) {
2727
ctx := r.Context()
28-
sp, ctx := opentracing.StartSpanFromContext(ctx, "limitedRoundTripper.do")
28+
sp, ctx := opentracing.StartSpanFromContext(ctx, "serializeRoundTripper.do")
2929
defer sp.Finish()
3030

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

0 commit comments

Comments
 (0)