-
-
Notifications
You must be signed in to change notification settings - Fork 26.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fallback #3151
base: master
Are you sure you want to change the base?
Fallback #3151
Conversation
Quality Gate failedFailed conditions See analysis details on SonarQube Cloud Catch issues before they fail your Quality Gate with our IDE extension SonarQube for IDE |
<properties> | ||
<maven.compiler.source>17</maven.compiler.source> | ||
<maven.compiler.target>17</maven.compiler.target> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
</properties> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not needed, comes from parent pom.xml
@@ -0,0 +1,72 @@ | |||
<?xml version="1.0" encoding="UTF-8"?> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not related to this file, but I noticed that README.md is missing. It has a very specific format described here: https://github.com/iluwatar/java-design-patterns/wiki/01.-How-to-contribute You can also check the other patterns for examples.
This PR provides the complete implementation of the Fallback Pattern with Circuit Breaker. The Fallback Pattern gracefully handles failures by providing alternative solutions when the primary service fails to prevent cascading failures and monitor the health of the primary service while ensuring thread safety and proper synchronization.
Close #2846