xiaorongZheng opened a new issue, #5742:
URL: https://github.com/apache/rocketmq/issues/5742
org.apache.rocketmq.remoting.protocol.RemotingCommand
static {
final String protocol = System.getProperty(SERIALIZE_TYPE_PROPERTY,
System.getenv(SERIALIZE_TYPE_ENV));
if (!isBlank(protocol)) {
try {
serializeTypeConfigInThisServer =
SerializeType.valueOf(protocol);
} catch (IllegalArgumentException e) {
throw new RuntimeException("parser specified protocol error.
protocol=" + protocol, e);
}
}
}
uncorrect use with SerializeType#valueof method,The protocol type should
change to byte
--
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]