Skip to content

Commit

Permalink
CI: Build and deploy website updates
Browse files Browse the repository at this point in the history
  • Loading branch information
smallrye-ci committed Jul 26, 2023
1 parent b09012b commit d3e2d9c
Show file tree
Hide file tree
Showing 13 changed files with 19 additions and 67 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 2 additions & 11 deletions docs/smallrye-fault-tolerance/6.2.0/reference/circuit-breaker.html
Original file line number Diff line number Diff line change
Expand Up @@ -237,18 +237,9 @@ <h2 id="_description"><a class="anchor" href="#_description"></a>Description</h2
<div class="paragraph">
<p>The circuit breaker is a simple state machine:</p>
</div>
<div class="listingblock kroki-error">
<div class="imageblock kroki">
<div class="content">
<pre>stateDiagram-v2
CLOSED: [CLOSED] Allow invocations and track the number of successes and failures
OPEN: [OPEN] Fail fast, prevent all invocations
HALF_OPEN: [HALF-OPEN] Allow some probe invocations to proceed

[*] --&gt; CLOSED
CLOSED --&gt; OPEN: Recent invocations failed too often
OPEN --&gt; HALF_OPEN: After some time, determine if \n failing fast is still appropriate
HALF_OPEN --&gt; CLOSED: All probe invocations succeeded
HALF_OPEN --&gt; OPEN: Some probe invocations failed</pre>
<img src="../_images/circuit-breaker-aa68448452c1d208b65a126eb8c0a5acdca4584f.svg" alt="circuit-breaker">
</div>
</div>
<div class="paragraph">
Expand Down
Loading

0 comments on commit d3e2d9c

Please sign in to comment.