Skip to content

Commit

Permalink
fix(rln-relay): increase retries for 1 minute recovery time
Browse files Browse the repository at this point in the history
  • Loading branch information
rymnc committed Apr 22, 2024
1 parent 2c01fa0 commit 1752e08
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ type RetryStrategy* = object
retryCount*: uint

proc new*(T: type RetryStrategy): RetryStrategy =
return RetryStrategy(shouldRetry: true, retryDelay: 1000.millis, retryCount: 3)
return RetryStrategy(shouldRetry: true, retryDelay: 4000.millis, retryCount: 15)

template retryWrapper*(
res: auto,
Expand Down

0 comments on commit 1752e08

Please sign in to comment.