TheNorthMemory opened a new issue, #5768: URL: https://github.com/apache/rocketmq/issues/5768
1. Please describe the issue you observed: There was described the `217` code as `GET_KV_CONFIG_BY_VALUE` label, see [here](https://github.com/apache/rocketmq-client-cpp/blob/master/src/protocol/MQProtos.h#L98-L100) ```c++ GET_KV_CONFIG_BY_VALUE = 217, ``` But since `5.0.0-beta`, the RequestCode(`217`) may be reusable as `REGISTER_TOPIC_IN_NAMESRV` https://github.com/apache/rocketmq/blob/ec5d3236f65786be7dde712dda5f5ee152d0dce6/remoting/src/main/java/org/apache/rocketmq/remoting/protocol/RequestCode.java#L133 Those two kind of `RemotingCommand` operations looks like incompatible, the one `GET_KV_CONFIG_BY_VALUE` mostly same as fetching and another `REGISTER_TOPIC_IN_NAMESRV` sames to pushing. It's suggest that toggle the `REGISTER_TOPIC_IN_NAMESRV` code to another one for the back compatible. -- 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]
