Update image filenames

This commit is contained in:
Ilkka Seppälä 2021-01-30 14:44:41 +02:00
parent a94737075e
commit 7408620a71
3 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ remote calls.
The service architecture is as follows:
![alt text](./etc/ServiceDiagram.PNG "Service Diagram")
![alt text](./etc/ServiceDiagram.png "Service Diagram")
In terms of code, the end user application is:
@ -292,7 +292,7 @@ public class DefaultCircuitBreaker implements CircuitBreaker {
How does the above pattern prevent failures? Let's understand via this finite state machine
implemented by it.
![alt text](./etc/StateDiagram.PNG "State Diagram")
![alt text](./etc/StateDiagram.png "State Diagram")
- We initialize the Circuit Breaker object with certain parameters: `timeout`, `failureThreshold` and `retryTimePeriod` which help determine how resilient the API is.
- Initially, we are in the `closed` state and nos remote calls to the API have occurred.

View File

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 23 KiB

View File

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB