Skip to content

Commit

Permalink
change default linger to be 0 (#4344)
Browse files Browse the repository at this point in the history
  • Loading branch information
sehz authored Jan 20, 2025
1 parent 5aad19d commit 8f8ba83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/fluvio/src/producer/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use crate::producer::partitioning::{Partitioner, SiphashRoundRobinPartitioner};

use super::partitioning::SpecificPartitioner;

const DEFAULT_LINGER_MS: u64 = 100;
const DEFAULT_LINGER_MS: u64 = 0;
const DEFAULT_TIMEOUT_MS: u64 = 1500;
const DEFAULT_BATCH_SIZE_BYTES: usize = 16_384;
const DEFAULT_BATCH_QUEUE_SIZE: usize = 100;
Expand Down

0 comments on commit 8f8ba83

Please sign in to comment.