Committed by
Gerrit Code Review
Small fixes to IntentService and perf-installer
Change-Id: I7f1fedd96e5154254aa1db205e9427ac122bfc39
Showing
2 changed files
with
1 additions
and
3 deletions
... | @@ -179,8 +179,6 @@ public class IntentPerfInstaller { | ... | @@ -179,8 +179,6 @@ public class IntentPerfInstaller { |
179 | workers = Executors.newFixedThreadPool(DEFAULT_NUM_WORKERS, groupedThreads("onos/intent-perf", "worker-%d")); | 179 | workers = Executors.newFixedThreadPool(DEFAULT_NUM_WORKERS, groupedThreads("onos/intent-perf", "worker-%d")); |
180 | 180 | ||
181 | // disable flow backups for testing | 181 | // disable flow backups for testing |
182 | - log.info("flow props: {}", | ||
183 | - configService.getProperties("org.onosproject.store.flow.impl.DistributedFlowRuleStore")); | ||
184 | configService.setProperty("org.onosproject.store.flow.impl.DistributedFlowRuleStore", | 182 | configService.setProperty("org.onosproject.store.flow.impl.DistributedFlowRuleStore", |
185 | "backupEnabled", "false"); | 183 | "backupEnabled", "false"); |
186 | 184 | ... | ... |
... | @@ -56,7 +56,7 @@ public interface IntentService { | ... | @@ -56,7 +56,7 @@ public interface IntentService { |
56 | * @param key key of the intent | 56 | * @param key key of the intent |
57 | * @return intent object if the key is found, null otherwise | 57 | * @return intent object if the key is found, null otherwise |
58 | */ | 58 | */ |
59 | - public Intent getIntent(Key key); | 59 | + Intent getIntent(Key key); |
60 | 60 | ||
61 | /** | 61 | /** |
62 | * Returns an iterable of intents currently in the system. | 62 | * Returns an iterable of intents currently in the system. | ... | ... |
-
Please register or login to post a comment