I've have a method which is annotated with @Scheduled and @Retryable. This method work fine with Mvc but the same method is not working on Webflux.
The scheduler works fine but Retryable is not happening. This happens only on Webflux.
@Scheduled(cron = "${config.refresh.interval}")
@Retryable(backoff = @Backoff(delayExpression = "${config.backoff.delay:999}"))
public void refreshConfig() {
// Load config values here
}
Boot Version - 2.6.7
spring-retry - 1.3.3