FlyingOnion commented on issue #603: URL: https://github.com/apache/rocketmq-client-go/issues/603#issuecomment-783805208
> is it still failed in the latest 2.1.0 rc? Yes I'm afraid, because the [v2/admin package](https://pkg.go.dev/github.com/apache/rocketmq-client-go/v2/admin?tab=versions) does not have the same version tags with [main package](https://pkg.go.dev/github.com/apache/rocketmq-client-go/v2?tab=versions). Adding the version tag will solve, but it is surely better to keep the version tags consistent. ``` PS C:\Users\Administrator> go get github.com/apache/rocketmq-client-go/v2/admin go get github.com/apache/rocketmq-client-go/v2/admin: module github.com/apache/rocketmq-client-go/v2@upgrade found (v2.0.0), but does not contain package github.com/apache/rocketmq-client-go/v2/admin ``` ``` PS C:\Users\Administrator> go get github.com/apache/rocketmq-client-go/v2/[email protected] go: downloading github.com/apache/rocketmq-client-go/v2 v2.1.0-rc5.0.20210115095702-7e36c751e428 go: found github.com/apache/rocketmq-client-go/v2/admin in github.com/apache/rocketmq-client-go/v2 v2.1.0-rc5.0.20210115095702-7e36c751e428 ``` ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected]
