Robert Winkler
Robert Winkler
Hi, sry I don't get the question. The state of an instance of a rate limiter?
Hi, no there are no plans right now. But feel free to create a PR. We need any support.
Hi, @pollend it seems that `RateLimiterInterceptor` has a compile dependency to RxJava2. Is that required? We should make it pluggable like in Spring Boot, if possible. @LenaKucharczuk From my point...
Hi, thanks. Feel free to create a PR
I assume Mono.zip does not cancel the other requests, if one request fails? :( Did you try to debug it?
Hi, do you use Spring Boot and Annotations?
Then define a fallback method which catches `CallNotPermittedException`.
Did you have a look at this? https://resilience4j.readme.io/docs/getting-started-3#fallback-methods
You could narrow down the scope of the exception. In that case the fallback is only called when a `CallNotPermittedException` occurs. ``` fun fallbackCommentsAccess( articleId: String, reason: CallNotPermittedException ): CompletableFuture?...
Hello, the following code changes the current instance. There is no need to replace this RateLimiter instance in the RateLmiterRegistry after chaning the values. Or do you want to get...