Skip to content

Commit

Permalink
Merge branch 'master' into resultify-waku-rln-relay
Browse files Browse the repository at this point in the history
  • Loading branch information
rymnc authored Apr 23, 2024
2 parents 094f7f6 + 1a23700 commit 646ab1f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions waku/factory/external_config.nim
Original file line number Diff line number Diff line change
Expand Up @@ -409,9 +409,7 @@ type WakuNodeConf* = object

## REST HTTP config
rest* {.
desc: "Enable Waku REST HTTP server: true|false",
defaultValue: false,
name: "rest"
desc: "Enable Waku REST HTTP server: true|false", defaultValue: true, name: "rest"
.}: bool

restAddress* {.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,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)

proc retryWrapper*[T](
retryStrategy: RetryStrategy,
Expand Down

0 comments on commit 646ab1f

Please sign in to comment.