Enable GossipIntentStore by default
Change-Id: I31e7fc590436b6d784b896b90776bc1fe348f7a5
Showing
2 changed files
with
2 additions
and
2 deletions
... | @@ -52,7 +52,7 @@ import static org.slf4j.LoggerFactory.getLogger; | ... | @@ -52,7 +52,7 @@ import static org.slf4j.LoggerFactory.getLogger; |
52 | * Manages inventory of Intents in a distributed data store that uses optimistic | 52 | * Manages inventory of Intents in a distributed data store that uses optimistic |
53 | * replication and gossip based techniques. | 53 | * replication and gossip based techniques. |
54 | */ | 54 | */ |
55 | -@Component(immediate = true, enabled = false) | 55 | +@Component(immediate = true, enabled = true) |
56 | @Service | 56 | @Service |
57 | public class GossipIntentStore | 57 | public class GossipIntentStore |
58 | extends AbstractStore<IntentEvent, IntentStoreDelegate> | 58 | extends AbstractStore<IntentEvent, IntentStoreDelegate> | ... | ... |
... | @@ -68,7 +68,7 @@ import static org.onlab.metrics.MetricsUtil.stopTimer; | ... | @@ -68,7 +68,7 @@ import static org.onlab.metrics.MetricsUtil.stopTimer; |
68 | import static org.onosproject.net.intent.IntentState.*; | 68 | import static org.onosproject.net.intent.IntentState.*; |
69 | import static org.slf4j.LoggerFactory.getLogger; | 69 | import static org.slf4j.LoggerFactory.getLogger; |
70 | 70 | ||
71 | -@Component(immediate = true, enabled = true) | 71 | +@Component(immediate = true, enabled = false) |
72 | @Service | 72 | @Service |
73 | public class HazelcastIntentStore | 73 | public class HazelcastIntentStore |
74 | extends AbstractHazelcastStore<IntentEvent, IntentStoreDelegate> | 74 | extends AbstractHazelcastStore<IntentEvent, IntentStoreDelegate> | ... | ... |
-
Please register or login to post a comment