Skip to content

Commit

Permalink
fix: DEFAULT_QUEUE_BUFFERING_MAX_MS (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
leo-lambda256 authored Jan 9, 2025
1 parent 34f5e0b commit 3b61cae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/processor/src/utils/mq.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use rdkafka::{
};

const DEFAULT_MESSAGE_TIMEOUT_MS: &str = "5000";
const DEFAULT_QUEUE_BUFFERING_MAX_MS: &str = "2000";
const DEFAULT_QUEUE_BUFFERING_MAX_MS: &str = "100";

pub trait CustomProducer {
fn new(brokers: &str) -> Self;
Expand Down

0 comments on commit 3b61cae

Please sign in to comment.