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
I'm experiencing issues seeking in a pulsar topic, where I tried to call Seek multiple times for an IConsumer subscribed to the pulsar topic. If I call consumer.SeekAsync(MessageId.Earliest) twice after each other, an NotConnectedException exception with the message Not connected to broker.
Is it the expected behavior or I'm I doing something wrong?
Hi, thank for reporting. Pulsar.Client is a port of Java client library and as far as I can see this feature was implemented relatively recently in PRs one and two, so you can work on implementing this feature and I'll review the PR.
I'm experiencing issues seeking in a pulsar topic, where I tried to call Seek multiple times for an IConsumer subscribed to the pulsar topic. If I call
consumer.SeekAsync(MessageId.Earliest)
twice after each other, anNotConnectedException
exception with the messageNot connected to broker
.Is it the expected behavior or I'm I doing something wrong?
Steps to reproduce:
First I started Pulsar with Docker as described here https://pulsar.apache.org/docs/4.0.x/standalone-docker/:
Then I ran the following code based on Simple.cs example found in the examples
The text was updated successfully, but these errors were encountered: