Skip to content

Commit

Permalink
Increase replication request timeout for unit tests (#4856)
Browse files Browse the repository at this point in the history
  • Loading branch information
guilload authored Apr 10, 2024
1 parent 0bb20f3 commit d8283b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quickwit/quickwit-ingest/src/ingest_v2/replication.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ pub(super) const SYN_REPLICATION_STREAM_CAPACITY: usize = 5;

/// Duration after which replication requests time out with [`ReplicationError::Timeout`].
const REPLICATION_REQUEST_TIMEOUT: Duration = if cfg!(any(test, feature = "testsuite")) {
Duration::from_millis(10)
Duration::from_millis(50)
} else {
Duration::from_secs(3)
};
Expand Down

0 comments on commit d8283b8

Please sign in to comment.