Jonathan Hart

Enable GossipIntentStore by default

Change-Id: I31e7fc590436b6d784b896b90776bc1fe348f7a5
......@@ -52,7 +52,7 @@ import static org.slf4j.LoggerFactory.getLogger;
* Manages inventory of Intents in a distributed data store that uses optimistic
* replication and gossip based techniques.
*/
@Component(immediate = true, enabled = false)
@Component(immediate = true, enabled = true)
@Service
public class GossipIntentStore
extends AbstractStore<IntentEvent, IntentStoreDelegate>
......
......@@ -68,7 +68,7 @@ import static org.onlab.metrics.MetricsUtil.stopTimer;
import static org.onosproject.net.intent.IntentState.*;
import static org.slf4j.LoggerFactory.getLogger;
@Component(immediate = true, enabled = true)
@Component(immediate = true, enabled = false)
@Service
public class HazelcastIntentStore
extends AbstractHazelcastStore<IntentEvent, IntentStoreDelegate>
......