resilience4clj-retry icon indicating copy to clipboard operation
resilience4clj-retry copied to clipboard

Resilience4Clj Retry lets you decorate a function call with a specified number of retry attempts.

Results 5 resilience4clj-retry issues
Sort by recently updated
recently updated
newest added

I have existing functions that I'm attempting to decorate as retriable, but I'm noticing that retry is not triggered when `java.lang.Exception` is thrown, I'm not sure if this is an...

Update resilience4j version from 0.17.0 (the last one before the 1.0.0 release) to 1.5.0 (the most recent one at this time). Since the interface `io.github.resilience4j.retry.IntervalFuction` was deprecated in favor of...

The indicated code doesn't work, as the function requires a string as the first argument

Thanks for the sweet lib! The example of how to create a retry with configuration doesn't run: ```clj (def retry (r/create {:max-attempts 10 :wait-duration 300})) clojure.lang.PersistentArrayMap is in unnamed module...