pgier commented on PR #802: URL: https://github.com/apache/pulsar-client-go/pull/802#issuecomment-1179432763
I did a bit of testing just to make sure that this change doesn't break existing apps. AFAICT, a normal `go get github.com/apache/pulsar-client-go@latest` possibly followed by `go mod tidy` should work for most users without any additional changes needed. In some cases, users may see an `ambiguous import` error after upgrading. ``` github.com/apache/pulsar-client-go/oauth2: ambiguous import: found package github.com/apache/pulsar-client-go/oauth2 in multiple modules ``` The fix for this is to remove the indirect dependency line from go.mod, and the run `go mod tidy`. ``` github.com/apache/pulsar-client-go/oauth2 v0.0.0-20220630195735-e95cf0633348 // indirect ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
