Skip to content

Commit

Permalink
fix(rln-relay): increase retries for 1 minute recovery time (#2614)
Browse files Browse the repository at this point in the history
  • Loading branch information
rymnc authored Apr 23, 2024
1 parent 6bc79bc commit 1a23700
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 1a23700

Please sign in to comment.