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
If I create a new empty topic and run the following code, it will block indefinitely:
let consumer = fluvio::consumer("my-topic",0).await?;// This call blocks until a record appears in the partitionletmut stream = consumer.stream(Offset::beginning()).await?;
This is not desirable. The expected behavior would be for the stream object to be returned as soon as a connection to the partition leader is created. Waiting should only happen if we explicitly await on fetching elements on the stream, e.g. here:
If I create a new empty topic and run the following code, it will block indefinitely:
This is not desirable. The expected behavior would be for the stream object to be returned as soon as a connection to the partition leader is created. Waiting should only happen if we explicitly await on fetching elements on the stream, e.g. here:
The text was updated successfully, but these errors were encountered: