Committed by
Gerrit Code Review
Refactor: Rename NewDistributedFlowRuleStore.java -> DistributedFlowRuleStore.java
Change-Id: Idc4864b10f7f2e4cc92a9a25f1fa74835148eab8
Showing
2 changed files
with
2 additions
and
2 deletions
... | @@ -178,7 +178,7 @@ public class IntentPerfInstaller { | ... | @@ -178,7 +178,7 @@ public class IntentPerfInstaller { |
178 | workers = Executors.newFixedThreadPool(DEFAULT_NUM_WORKERS, groupedThreads("onos/intent-perf", "worker-%d")); | 178 | workers = Executors.newFixedThreadPool(DEFAULT_NUM_WORKERS, groupedThreads("onos/intent-perf", "worker-%d")); |
179 | 179 | ||
180 | // disable flow backups for testing | 180 | // disable flow backups for testing |
181 | - configService.setProperty("org.onosproject.store.flow.impl.NewDistributedFlowRuleStore", | 181 | + configService.setProperty("org.onosproject.store.flow.impl.DistributedFlowRuleStore", |
182 | "backupEnabled", "true"); | 182 | "backupEnabled", "true"); |
183 | 183 | ||
184 | // TODO: replace with shared executor | 184 | // TODO: replace with shared executor | ... | ... |
... | @@ -107,7 +107,7 @@ package org.onosproject.store.flow.impl; | ... | @@ -107,7 +107,7 @@ package org.onosproject.store.flow.impl; |
107 | */ | 107 | */ |
108 | @Component(immediate = true, enabled = true) | 108 | @Component(immediate = true, enabled = true) |
109 | @Service | 109 | @Service |
110 | -public class NewDistributedFlowRuleStore | 110 | +public class DistributedFlowRuleStore |
111 | extends AbstractStore<FlowRuleBatchEvent, FlowRuleStoreDelegate> | 111 | extends AbstractStore<FlowRuleBatchEvent, FlowRuleStoreDelegate> |
112 | implements FlowRuleStore { | 112 | implements FlowRuleStore { |
113 | 113 | ... | ... |
-
Please register or login to post a comment