commit | 71026b2d0a170d7b77d3e80268a0bc9b5e643053 | [log] [tgz] |
---|---|---|
author | Thomas Vachuska <tom@opennetworking.org> | Fri Jan 05 16:01:44 2018 -0800 |
committer | Ray Milkey <ray@opennetworking.org> | Tue Jan 09 00:51:07 2018 +0000 |
tree | edc3275d99e0a4d369c97db7853f13699a0d5b44 | |
parent | 6ed460a0c294c25c12c1242fb3dcba7bee86aa11 [diff] |
Swapping the default flow rule store to be the ECM-based implementation. Change-Id: I6dd706ea1bc9135f79dccc9e2d587f82153c62c0
diff --git a/core/store/dist/src/main/java/org/onosproject/store/flow/impl/DistributedFlowRuleStore.java b/core/store/dist/src/main/java/org/onosproject/store/flow/impl/DistributedFlowRuleStore.java index 67fb658..3395867 100644 --- a/core/store/dist/src/main/java/org/onosproject/store/flow/impl/DistributedFlowRuleStore.java +++ b/core/store/dist/src/main/java/org/onosproject/store/flow/impl/DistributedFlowRuleStore.java
@@ -96,7 +96,7 @@ /** * Manages inventory of flow rules using a distributed state management protocol. */ -@Component(immediate = true) +@Component(enabled = false) @Service public class DistributedFlowRuleStore extends AbstractStore<FlowRuleBatchEvent, FlowRuleStoreDelegate>
diff --git a/core/store/dist/src/main/java/org/onosproject/store/flow/impl/ECFlowRuleStore.java b/core/store/dist/src/main/java/org/onosproject/store/flow/impl/ECFlowRuleStore.java index af87754..cd29b77 100644 --- a/core/store/dist/src/main/java/org/onosproject/store/flow/impl/ECFlowRuleStore.java +++ b/core/store/dist/src/main/java/org/onosproject/store/flow/impl/ECFlowRuleStore.java
@@ -108,7 +108,7 @@ /** * Manages inventory of flow rules using a distributed state management protocol. */ -@Component(enabled = false) +@Component(immediate = true) @Service public class ECFlowRuleStore extends AbstractStore<FlowRuleBatchEvent, FlowRuleStoreDelegate>