sijie commented on a change in pull request #3622: add reset cousor to a 
specific message time
URL: https://github.com/apache/pulsar/pull/3622#discussion_r258551124
 
 

 ##########
 File path: 
pulsar-broker/src/main/java/org/apache/pulsar/broker/service/ServerCnx.java
 ##########
 @@ -1050,14 +1050,13 @@ protected void handleSeek(CommandSeek seek) {
         final long requestId = seek.getRequestId();
         CompletableFuture<Consumer> consumerFuture = 
consumers.get(seek.getConsumerId());
 
-        // Currently only seeking on a message id is supported
-        if (!seek.hasMessageId()) {
+        if (!seek.hasMessageId() && !seek.hasMessageTime()) {
             ctx.writeAndFlush(
                     Commands.newError(requestId, ServerError.MetadataError, 
"Message id was not present"));
 
 Review comment:
   nit: we should update the error message as well.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to