Omer Keynan
Omer Keynan
Thanks, working. However, I'm probably still missing something as the method that should be retried is not invoked again. Also, I'm looking at the test in the demo: ```java @Test...
Can anyone please take a look and advise as to why fallback isn't triggered, not in my project, and neither in the spring demo with the code I tried above?
I used the fallback with the timeout exception, and it was hit, but this test snippet failed as the 'search' method was only hit once. ```java BDDMockito.then(reactiveElasticsearchClient).should(times(3)).search(captor.capture()); ``` This is...
Yes I have, I see the retry events go through, I just don’t see the call to the external service happening twice. As it’s a reactive application, debugging isn’t that...
@cb-shivamagarwal Hi, I have debugged this using the code you provided, and I see this that on usage (aquirePermissions for example), there will be a call to Duration.toNanos(), which fails...
@RobWin Created [pr# 1732](https://github.com/resilience4j/resilience4j/pull/1732)
Are there any updates on this subject? I do see the point in @benas comment, and I understand there will be a lot of rewriting to do. But wasn't a...
@toniocus I'm no expert, but I've gained some millage with reactive, and specifically reactor, and I don't see a case where a call to block() is favorable over using the...