Skip to content

Commit

Permalink
chore(stream): change FlowControlExecutor to print WARN logs in `ma…
Browse files Browse the repository at this point in the history
…dsim` (#13125)
  • Loading branch information
kwannoel authored Oct 30, 2023
1 parent 8b47f9f commit af6b4c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stream/src/executor/flow_control.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ impl FlowControlExecutor {
#[allow(clippy::too_many_arguments)]
pub fn new(input: Box<dyn Executor>, rate_limit: Option<u32>) -> Self {
#[cfg(madsim)]
println!("FlowControlExecutor rate limiter is disabled in madsim as it will spawn system threads");
tracing::warn!("FlowControlExecutor rate limiter is disabled in madsim as it will spawn system threads");
Self { input, rate_limit }
}

Expand Down

0 comments on commit af6b4c6

Please sign in to comment.