Skip to content

Commit

Permalink
Updated CircuitBreaker documentation with correct exception (#3828)
Browse files Browse the repository at this point in the history
  • Loading branch information
wesselkranenborg authored and Aaronontheweb committed Jun 26, 2019
1 parent f4a768c commit d0b8eab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/articles/utilities/circuit-breaker.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The Akka.NET library provides an implementation of a circuit breaker called `Akk
* When the failure counter reaches a `MaxFailures` count, the breaker is
tripped into `Open` state
* While in `Open` state:
* All calls fail-fast with a `CircuitBreakerOpenException`
* All calls fail-fast with a `OpenCircuitException`
* After the configured `ResetTimeout`, the circuit breaker enters a
`Half-Open` state
* In `Half-Open` state:
Expand Down

0 comments on commit d0b8eab

Please sign in to comment.