-
|
Beta Was this translation helpful? Give feedback.
Answered by
Ladicek
Feb 11, 2025
Replies: 1 comment 2 replies
-
Yes, see https://smallrye.io/docs/smallrye-fault-tolerance/6.8.0/reference/config.html and https://quarkus.io/guides/smallrye-fault-tolerance#runtime-configuration
What does "starting time" mean? The first retry attempt starts after the first delay, which begins after the failure of the initial attempt. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I don't think there's a good way, frankly. It should be possible to add a second method that would have its own
@Retry
annotation, and call it from the first method. Something like:Note that this would only work in Quarkus, which supports self-interception.