hegelwin opened a new issue, #1298: URL: https://github.com/apache/pulsar-client-go/issues/1298
### Expected behavior The `Seek` method should not check for partition-specific logic when working with non-partitioned topics. It should simply seek to the specified message ID without involving partition indices. ### Actual behavior The `Seek` method fails with an error related to partition indices when called on a non-partitioned topic. The error message suggests that the `Seek` command should be performed on individual partitions, even though the topic is not partitioned. ### Steps to reproduce 1. Create a non-partitioned topic. 2. Use the `Seek` method with `pulsar.EarliestMessageID()` on this topic. 3. Observe that an error is returned due to partition-specific logic being applied, even though the topic is non-partitioned. ### System configuration **Pulsar version**: 3.6.0 **Pulsar Go client version**: v0.13.1 -- 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]
