We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be14e61 commit c66fc47Copy full SHA for c66fc47
1 file changed
crates/batcher/src/lib.rs
@@ -431,7 +431,7 @@ impl Batcher {
431
where
432
F: std::future::Future<Output = T>,
433
{
434
- match timeout(Duration::from_secs(150), lock_future).await {
+ match timeout(Duration::from_secs(15), lock_future).await {
435
Ok(result) => Some(result),
436
Err(_) => {
437
warn!("Batch lock acquisition timed out");
0 commit comments