Skip to content

Commit

Permalink
feat: activate 20 retries
Browse files Browse the repository at this point in the history
Signed-off-by: Guillaume Hivert <[email protected]>
  • Loading branch information
ghivert committed May 6, 2024
1 parent 83f4016 commit 1577d96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/backend/src/retrier.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ fn init(
work: fn(Int) -> Result(a, Error),
) -> actor.InitResult(State(a), Message) {
let subject = process.new_subject()
let state = State(subject, work, interval, 10)
let state = State(subject, work, interval, 20)
process.new_selector()
|> process.selecting(subject, function.identity)
|> actor.Ready(state, _)
Expand Down

0 comments on commit 1577d96

Please sign in to comment.