resilience4j / resilience4j

Resilience4j is a fault tolerance library designed for Java8 and functional programming
Apache License 2.0
9.74k stars 1.33k forks source link

Circuit breaker stuck in OPEN state #2093

Open palprat opened 9 months ago

palprat commented 9 months ago

Resilience4j version: 2.2.0

Java version: 17

CircuitBreakerConfig.custom() .minimumNumberOfCalls(50) .failureRateThreshold(80) .waitDurationInOpenState(2m) .permittedNumberOfCallsInHalfOpenState(5) .enableAutomaticTransitionFromOpenToHalfOpen() .build(); CB stuck in open state for hours.

RobWin commented 9 months ago

Hi,

is there no traffic on the system?