You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by rx...@apache.org on 2022/12/23 07:13:10 UTC

[pulsar-client-go] branch master updated: fix: fix 923 (#924)

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 <18...@163.com>
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
 	//