简体   繁体   English

OidcClientRequestReactiveFilter plu 的 FaultTollerance 重试不起作用

[英]FaultTollerance Retry for OidcClientRequestReactiveFilter plu doesn't work

I have a code for JAX-RS with the OidcClient provider.我有一个带有 OidcClient 提供程序的 JAX-RS 代码。

@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. Hovewer,当它运行时,它根本不会记录重试。

With @Timeout it doesn't try to retry.使用@Timeout 它不会尝试重试。

I can use uni with the retry, however, I want't to know whether it is a feature or a bug?我可以在重试时使用 uni,但是,我想知道它是功能还是错误?

Thanks to @Ladicek, logs fixed by removing logging world.感谢@Ladicek,通过删除日志世界来修复日志。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM