Robert Winkler
Robert Winkler
Hi, are you sure it's the Resilience4j thread pool? Can you log thread names? I can see `ForkJoinPool.commonPool-worker-1`? The threads from our Bulkhead-Threadpool contain the name of the Bulkhead. Please...
Hi, 1) If you are using a ThreadPoolBulkhead your method must always return a `CompletionStage` or `CompletableFuture`. 2) If you are using a ThreadPoolBulkhead you should not spawn another thread...
Thanks. LGTM. Would you expect any Resilience4j-specific metrics as a user if you use Resilience4j Observations?
Do you know when Micrometer 1.10.0 will be released? I would like to avoid to merge snaptshot versions.
Hi, 1) Would you like to contribute a `toString` method? 2) Seems to configured intervalFunction and waitDuration? Could you please show me your configuration? 3) Yes, this feature wasn't added...
When and where are you adding this code snippet? Did you verify that your code snippet is not invoked multiple times? Because this would result in multiple event consumer registrations...
Hi, did you try to debug it?
@omerk706 thanks for debugging it. I totally agree. Would you like to create a PR?
Hi, yes sure it's possible. It's the decorator pattern. You can decorate the function `circuitBreakingTimeLimitedBlock ` by a try/catch and invoke the fallback method. In Java we have implemented `SupplierUtils.recover(...)`...