Skip to content

Commit

Permalink
Correct error message
Browse files Browse the repository at this point in the history
  • Loading branch information
jeschkies committed Dec 11, 2023
1 parent f699184 commit b87d0d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/querier/queryrange/codec.go
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ func (Codec) DecodeRequest(_ context.Context, r *http.Request, _ []string) (quer
AggregateBy: req.AggregateBy,
}, err
default:
return nil, httpgrpc.Errorf(http.StatusNotFound, fmt.Sprintf("unknown request path in decoding request: %s", r.URL.Path))
return nil, httpgrpc.Errorf(http.StatusNotFound, fmt.Sprintf("unknown request path: %s", r.URL.Path))
}
}

Expand Down

0 comments on commit b87d0d7

Please sign in to comment.