Skip to content

Commit 50bde32

Browse files
committed
fix: increase retries in for attempt_push
1 parent c83ac32 commit 50bde32

File tree

1 file changed

+1
-1
lines changed
  • crates/worker/src/connector

1 file changed

+1
-1
lines changed

crates/worker/src/connector/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ where
353353
let network = network.clone();
354354
async move {
355355
let retry_strategy =
356-
FixedInterval::from_millis(200).map(jitter).take(6);
356+
FixedInterval::from_millis(200).map(jitter).take(15);
357357

358358
async fn attempt_push<T>(
359359
network: T,

0 commit comments

Comments
 (0)