Skip to content

Commit

Permalink
Fix http client requestURI (#317)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-elinardi authored Sep 11, 2023
1 parent 99ea371 commit 0bda475
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/httpoverrpc/client/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ func (c *HTTPTransporter) RoundTrip(req *http.Request) (*http.Response, error) {
}
reqPb := &pb.HostHTTPRequest{
Request: &pb.HTTPRequest{
RequestUri: req.URL.Path,
RequestUri: req.URL.RequestURI(),
Method: req.Method,
Headers: httpHeaderToPbHeader(&req.Header),
Body: body,
Expand Down

0 comments on commit 0bda475

Please sign in to comment.