Skip to content

Commit

Permalink
Set the recovery strategy for projections to retry and fail (#380)
Browse files Browse the repository at this point in the history
  • Loading branch information
apeshimam committed Jun 15, 2021
1 parent b2e3fd8 commit 44420a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/service/src/main/resources/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ akka {
# retry-and-skip - If the first attempt to invoke the handler fails it will retry invoking the handler with the
# same envelope this number of `retries` with the `delay` between each attempt. It will give up,
# discard the element and continue with next if all attempts fail.
strategy = fail
strategy = retry-and-fail

# The number of times to retry handler function
# This is only applicable to `retry-and-fail` and `retry-and-skip` recovery strategies
Expand Down

0 comments on commit 44420a0

Please sign in to comment.