mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-02 14:03:06 +00:00
fix(rln-relay): increase retries for 1 minute recovery time (#2614)
This commit is contained in:
parent
3ef656fc71
commit
8a2b0dcf7e
@ -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,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user