Paulius Paplauskas
Results
2
issues of
Paulius Paplauskas
When the RetryPolicy fails I need to throw a specific exception. Currently to achieve this I've configured it like this: ``` Failsafe .with( Fallback.ofException(e -> new FailedTaskException()) .handle(SomeRetryException.class) .handleResultIf(Objects::isNull) .handleResultIf(TaskResult::isRunning),...
Currently it's not possible to encode `Enum` value in form data. The value ends up using `PojoWriter`, which just skips it, when it should be using the delegate writer or...