-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #203 from santoshdahal12/disable-time-limiter-conf…
…igurable-by-id-or-group Fixes #202 issue.
- Loading branch information
Showing
8 changed files
with
140 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
...a/org/springframework/cloud/circuitbreaker/resilience4j/ConfigurationPropertiesUtils.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/* | ||
* Copyright 2013-2021 the original author or authors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.springframework.cloud.circuitbreaker.resilience4j; | ||
|
||
import java.util.Map; | ||
|
||
/** | ||
* | ||
* A util class related to configuration properties class. | ||
* | ||
* @author Santosh Dahal | ||
*/ | ||
public final class ConfigurationPropertiesUtils { | ||
|
||
private ConfigurationPropertiesUtils() { | ||
} | ||
|
||
/** | ||
* Determines if the TimeLimiter should be disabled. First priority is operation or | ||
* method,then service and if not found returns disable-time-limit. | ||
* @param resilience4JConfigurationProperties configuration properties set | ||
* @param id operation or method name | ||
* @param groupName service group name | ||
* @return value set for id, groupName or default value of disable-time-limit and | ||
* {@code false} otherwise | ||
*/ | ||
static boolean isDisableTimeLimiter(Resilience4JConfigurationProperties resilience4JConfigurationProperties, | ||
String id, String groupName) { | ||
|
||
if (resilience4JConfigurationProperties == null) { | ||
return false; | ||
} | ||
Map<String, Boolean> disableTimeLimiterMap = resilience4JConfigurationProperties.getDisableTimeLimiterMap(); | ||
if (disableTimeLimiterMap.containsKey(id)) { | ||
return disableTimeLimiterMap.get(id); | ||
} | ||
if (disableTimeLimiterMap.containsKey(groupName)) { | ||
return disableTimeLimiterMap.get(groupName); | ||
} | ||
return resilience4JConfigurationProperties.isDisableTimeLimiter(); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters