I'm looking through the docs of Resilience4j and I cannot seem to find the configuration for a time limiter.
I work in Spring Boot 2 and I use configure the setting in an application.yml. So far it looks like this:
resilience4j.circuitbreaker:
instances:
frap:
registerHealthIndicator: true
ringBufferSizeInClosedState: 3
ringBufferSizeInHalfOpenState: 3
waitDurationInOpenState: 10s
failureRateThreshold: 20
waitDuration: 10s
What property should I add to make it fail fast?