Skip to content

Commit

Permalink
add a todo comment about backfill
Browse files Browse the repository at this point in the history
  • Loading branch information
shekhirin committed Sep 3, 2024
1 parent 689e538 commit 6075bdb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions crates/exex/exex/src/manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ impl Stream for ExExNotificationsWithHead<'_> {
fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
let this = self.get_mut();

// TODO(alexey): backfill according to the head
loop {
let Some(notification) = ready!(this.0.poll_recv(cx)) else { return Poll::Ready(None) };

Expand Down

0 comments on commit 6075bdb

Please sign in to comment.