I have a code for JAX-RS with the OidcClient provider.
@RegisterRestClient(configKey = "acs")
@RegisterProvider(OidcClientRequestReactiveFilter.class)
public interface Test {
@GET
@Timeout
@Retry
@Path("/some-cool_path")
String test();
}
I've added a Retry Config.
Logs are added:
quarkus:
funqy:
export: handleRequest
log:
category:
'io.smallrye.faulttolerance':
logging:
level: DEBUG
Hovewer, when it runs it doesn't log retry at all.
With @Timeout it doesn't try to retry.
I can use uni with the retry, however, I want't to know whether it is a feature or a bug?
Thanks to @Ladicek, logs fixed by removing logging world.