Skip to content

Commit 3c71ab2

Browse files
committed
increase timeout for write conn
1 parent f2e53f3 commit 3c71ab2

File tree

1 file changed

+1
-1
lines changed
  • crates/corro-agent/src/agent

1 file changed

+1
-1
lines changed

crates/corro-agent/src/agent/util.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -800,7 +800,7 @@ pub async fn process_multiple_changes(
800800
warn!("process_multiple_changes: removing duplicates took too long - {elapsed:?}");
801801
}
802802

803-
let mut conn = timeout(Duration::from_secs(10), agent.pool().write_normal())
803+
let mut conn = timeout(Duration::from_secs(5 * 60), agent.pool().write_normal())
804804
.await
805805
.map_err(PoolError::from)??;
806806

0 commit comments

Comments
 (0)