commit | 5c85182f2b38fd1da4e42d69f687fec71ea8b33f | [log] [tgz] |
---|---|---|
author | Thomas Vachuska <tom@opennetworking.org> | Fri Jan 05 16:01:44 2018 -0800 |
committer | Thomas Vachuska <tom@opennetworking.org> | Tue Jan 09 13:09:30 2018 -0800 |
tree | 1223a20d8a3f0b8fbbd02373539bd3ad5c93a301 | |
parent | 70a287165f1bb0e8e2c3e829f79a04080dae9e43 [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 2fd7076..76070fb 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
@@ -95,7 +95,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>