Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
zwang28 committed Jan 3, 2025
1 parent bc39c60 commit 85a38fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stream/src/executor/dispatch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ impl StreamConsumer for DispatchExecutor {
type BarrierStream = impl Stream<Item = StreamResult<Barrier>> + Send;

fn execute(mut self: Box<Self>) -> Self::BarrierStream {
let barrier_batch_size = self
let max_additional_barrier_num = self
.inner
.context
.config
Expand Down Expand Up @@ -437,7 +437,7 @@ impl StreamConsumer for DispatchExecutor {
let peek_more_barrier = b.mutation.is_none();
barrier_batch.push(b);
if peek_more_barrier {
barrier_batch_size
max_additional_barrier_num
} else {
0
}
Expand Down

0 comments on commit 85a38fb

Please sign in to comment.