Skip to content

Commit c66fc47

Browse files
committed
fix: timeout 15s
1 parent be14e61 commit c66fc47

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/batcher/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ impl Batcher {
431431
where
432432
F: std::future::Future<Output = T>,
433433
{
434-
match timeout(Duration::from_secs(150), lock_future).await {
434+
match timeout(Duration::from_secs(15), lock_future).await {
435435
Ok(result) => Some(result),
436436
Err(_) => {
437437
warn!("Batch lock acquisition timed out");

0 commit comments

Comments
 (0)