SantanuKar43 commented on code in PR #24059:
URL: https://github.com/apache/pulsar/pull/24059#discussion_r1981614372
##########
pulsar-client/src/main/java/org/apache/pulsar/client/impl/ConsumerImpl.java:
##########
@@ -824,6 +826,13 @@ private MessageImpl<?> getMessageImpl(Message<?> message) {
return null;
}
+ private static void copyMessageEventTimeIfNeeded(Message<?> message,
+
TypedMessageBuilder<byte[]> typedMessageBuilderNew) {
+ if (message.getEventTime() > 0) {
Review Comment:
Should we remove that check? I'm not sure what the original use case was.
--
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]