This is an automated email from the ASF dual-hosted git repository.
rxl pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-client-go.git
The following commit(s) were added to refs/heads/master by this push:
new 1d3499a fix: fix 923 (#924)
1d3499a is described below
commit 1d3499a18d526b4b1aef0bdbbc54ac812b8ae0c0
Author: Jiaqi Shen <[email protected]>
AuthorDate: Fri Dec 23 15:13:04 2022 +0800
fix: fix 923 (#924)
Remove the outdated interface description of SeekByTime. More details here
#923.
---
pulsar/consumer.go | 3 ---
1 file changed, 3 deletions(-)
diff --git a/pulsar/consumer.go b/pulsar/consumer.go
index 0a515e0..0e89fc0 100644
--- a/pulsar/consumer.go
+++ b/pulsar/consumer.go
@@ -267,9 +267,6 @@ type Consumer interface {
// SeekByTime resets the subscription associated with this consumer to
a specific message publish time.
//
- // Note: this operation can only be done on non-partitioned topics. For
these, one can rather perform the seek() on
- // the individual partitions.
- //
// @param time
// the message publish time when to reposition the
subscription
//