https://github.com/yauhenbichel/retry-with-resilience4j
Verify page status using resilience4j
https://github.com/yauhenbichel/retry-with-resilience4j
countdownlatch executorservice java resilience4j retry-requests
Last synced: 7 months ago
JSON representation
Verify page status using resilience4j
- Host: GitHub
- URL: https://github.com/yauhenbichel/retry-with-resilience4j
- Owner: YauhenBichel
- Created: 2023-10-30T14:28:41.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2023-10-30T16:24:39.000Z (almost 2 years ago)
- Last Synced: 2023-10-30T17:28:25.262Z (almost 2 years ago)
- Topics: countdownlatch, executorservice, java, resilience4j, retry-requests
- Language: Java
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Verify page status using resilience4j
Let’s say we have a list of 10 URLs in a text file.
We need to write a simple application that hits these pages over HTTP and
verifies that we receive 200 OK status codes.If we don’t receive 200OK on the first attempt, the application should do 4 additional retries.
Every retry should be on a 5-second interval.### References
- https://resilience4j.readme.io/
- https://httpstat.us