We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Say I have a bean with a method guarded by some fault tolerance strategy:
package com.example; @ApplicationScoped public class MyService { @Retry public void doSomething() { ... } }
and I apply the following configuration:
com.example.MyService/Retry/maxRetries=100
Per the MicroProfile Fault Tolerance specification, this should not apply to the doSomething method.
doSomething
That's pretty weird, if you ask me. We could change it, but only in the non-compatible mode.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Say I have a bean with a method guarded by some fault tolerance strategy:
and I apply the following configuration:
com.example.MyService/Retry/maxRetries=100
Per the MicroProfile Fault Tolerance specification, this should not apply to the
doSomething
method.That's pretty weird, if you ask me. We could change it, but only in the non-compatible mode.
The text was updated successfully, but these errors were encountered: