Skip to content

Commit

Permalink
fix: flow source break on empty chnl
Browse files Browse the repository at this point in the history
  • Loading branch information
discord9 committed May 30, 2024
1 parent 41d0a12 commit e183323
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/flow/src/compute/render/src_sink.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ impl<'referred, 'df> Context<'referred, 'df> {
to_arrange.push(((r, Row::empty()), t, d));
}
}
Err(TryRecvError::Empty) => {
break;
}
Err(TryRecvError::Lagged(lag_offset)) => {
common_telemetry::error!("Flow missing {} rows behind", lag_offset);
break;
Expand Down

0 comments on commit e183323

Please sign in to comment.