You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jo...@apache.org on 2017/10/08 16:40:20 UTC

geronimo-safeguard git commit: GERONIMO-6591 - Field should have been final.

Repository: geronimo-safeguard
Updated Branches:
  refs/heads/master a43eeec7d -> 75d1acdf9


GERONIMO-6591 - Field should have been final.


Project: http://git-wip-us.apache.org/repos/asf/geronimo-safeguard/repo
Commit: http://git-wip-us.apache.org/repos/asf/geronimo-safeguard/commit/75d1acdf
Tree: http://git-wip-us.apache.org/repos/asf/geronimo-safeguard/tree/75d1acdf
Diff: http://git-wip-us.apache.org/repos/asf/geronimo-safeguard/diff/75d1acdf

Branch: refs/heads/master
Commit: 75d1acdf96927cde64f38342003910e0077d04b3
Parents: a43eeec
Author: John D. Ament <jo...@apache.org>
Authored: Sun Oct 8 12:40:16 2017 -0400
Committer: John D. Ament <jo...@apache.org>
Committed: Sun Oct 8 12:40:16 2017 -0400

----------------------------------------------------------------------
 .../apache/safeguard/impl/executionPlans/ExecutionPlanFactory.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geronimo-safeguard/blob/75d1acdf/safeguard-impl/src/main/java/org/apache/safeguard/impl/executionPlans/ExecutionPlanFactory.java
----------------------------------------------------------------------
diff --git a/safeguard-impl/src/main/java/org/apache/safeguard/impl/executionPlans/ExecutionPlanFactory.java b/safeguard-impl/src/main/java/org/apache/safeguard/impl/executionPlans/ExecutionPlanFactory.java
index 3c11be5..2d829eb 100644
--- a/safeguard-impl/src/main/java/org/apache/safeguard/impl/executionPlans/ExecutionPlanFactory.java
+++ b/safeguard-impl/src/main/java/org/apache/safeguard/impl/executionPlans/ExecutionPlanFactory.java
@@ -50,7 +50,7 @@ public class ExecutionPlanFactory {
     private final FailsafeCircuitBreakerManager circuitBreakerManager;
     private final FailsafeRetryManager retryManager;
     private Map<String, ExecutionPlan> executionPlanMap = new HashMap<>();
-    private boolean enableAllMicroProfileFeatures = false;
+    private final boolean enableAllMicroProfileFeatures;
 
     public ExecutionPlanFactory(FailsafeCircuitBreakerManager circuitBreakerManager, FailsafeRetryManager retryManager) {
         this.circuitBreakerManager = circuitBreakerManager;