You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Error: invalid partition index -1 expected a partition between [0-1]"
Steps to reproduce
Create a non-partitioned topic.
Use the Seek method with pulsar.EarliestMessageID() on this topic.
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.3.2 Pulsar Go client version: v0.13.1
The text was updated successfully, but these errors were encountered:
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 theSeek
command should be performed on individual partitions, even though the topic is not partitioned.Error:
invalid partition index -1 expected a partition between [0-1]"
Steps to reproduce
Seek
method withpulsar.EarliestMessageID()
on this topic.System configuration
Pulsar version: 3.3.2
Pulsar Go client version: v0.13.1
The text was updated successfully, but these errors were encountered: