Michael Kutz

Results 3 comments of Michael Kutz

Thanks for the suggestion. Currently there's already a way to customize the number of retries by setting a timeout in your RetryableTask or RetryableQuestion. It is used [here in the...

Here's one possible implementation. ``` class JsonPathScrubber implements Scrubber { private final JsonPath path; private final Configuration configuration; public JsonPathScrubber(JsonPath path, Configuration configuration) { this.path = path; this.configuration = configuration;...