mattisonchao commented on code in PR #21379: URL: https://github.com/apache/pulsar/pull/21379#discussion_r1361920762
########## pulsar-websocket/src/main/java/org/apache/pulsar/websocket/ConsumerHandler.java: ########## @@ -299,8 +301,7 @@ private void checkResumeReceive() { private void handleAck(ConsumerCommand command) throws IOException { // We should have received an ack - TopicMessageId msgId = new TopicMessageIdImpl(topic.toString(), - (MessageIdAdv) MessageId.fromByteArray(Base64.getDecoder().decode(command.messageId))); + MessageId msgId = MessageId.fromByteArray(Base64.getDecoder().decode(command.messageId)); Review Comment: WE don't need to change it, isn't it? -- 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: commits-unsubscr...@pulsar.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org