Skip to content

Commit

Permalink
fix assert
Browse files Browse the repository at this point in the history
  • Loading branch information
wenym1 committed Feb 26, 2024
1 parent b501998 commit 78aa155
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/meta/src/barrier/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -302,9 +302,9 @@ impl CheckpointControl {
CompletingCommand::None | CompletingCommand::Err(_) => None,
CompletingCommand::Completing { command_ctx, .. } => Some(command_ctx),
}
.iter()
.into_iter()
)
.any(|x| x.command_ctx.command.should_pause_inject_barrier()),
.any(|command_ctx| command_ctx.command.should_pause_inject_barrier()),
should_pause
);

Expand Down

0 comments on commit 78aa155

Please sign in to comment.