MrLYG commented on issue #4840: URL: https://github.com/apache/rocketmq/issues/4840#issuecomment-1223804237
> > That's this means the go client has some bug or problem? > > If I need to use the go client to connect the rocektmq service, what should I do to avoid that problem? Could you give me some suggestions? > > IIRC, the latest version of rocketmq-client-go has fixed this issue. @guyinyou @ShannonDing Could you help to take a look? I used the latest version of rocketmq-client-go to consume messages from slave but still fail.  There is my go.mod file in which I require the latest version of rocketmq-client-go 2.1.1 ``` module go-rocket go 1.17 require github.com/apache/rocketmq-client-go/v2 v2.1.1 require ( github.com/emirpasic/gods v1.12.0 // indirect github.com/golang/mock v1.3.1 // indirect github.com/json-iterator/go v1.1.12 // indirect github.com/konsorten/go-windows-terminal-sequences v1.0.1 // indirect github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect github.com/modern-go/reflect2 v1.0.2 // indirect github.com/patrickmn/go-cache v2.1.0+incompatible // indirect github.com/pkg/errors v0.8.1 // indirect github.com/satori/go.uuid v1.2.0 // indirect github.com/sirupsen/logrus v1.4.0 // indirect github.com/stathat/consistent v1.0.0 // indirect github.com/tidwall/gjson v1.13.0 // indirect github.com/tidwall/match v1.1.1 // indirect github.com/tidwall/pretty v1.2.0 // indirect go.uber.org/atomic v1.5.1 // indirect golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2 // indirect golang.org/x/lint v0.0.0-20190930215403-16217165b5de // indirect golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect golang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c // indirect gopkg.in/natefinch/lumberjack.v2 v2.0.0 // 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]
