Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

*: add workaround for go-resty import to go.mod and fix import paths #10773

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,10 @@ require (
gopkg.in/yaml.v2 v2.2.2
sigs.k8s.io/yaml v1.1.0
)

// go-resty is imported under its old import path by grpc-gateway.
// This works around that problem until we pick up a version of
// grpc-gateway that has the imports fixed.
//
// See: https://github.com/go-resty/resty/issues/230
replace github.com/go-resty/resty => gopkg.in/resty.v1 v1.11.0