Madan Jampani
Committed by Gerrit Code Review

Enable ECLinkStore and disable GossipLinkStore

Change-Id: I94256eb042c1b1ec57f3d8a3cdffe7cf9816463a
......@@ -85,7 +85,7 @@ import com.google.common.util.concurrent.Futures;
/**
* Manages the inventory of links using a {@code EventuallyConsistentMap}.
*/
@Component(immediate = true, enabled = false)
@Component(immediate = true, enabled = true)
@Service
public class ECLinkStore
extends AbstractStore<LinkEvent, LinkStoreDelegate>
......
......@@ -99,7 +99,7 @@ import static org.slf4j.LoggerFactory.getLogger;
* Manages inventory of infrastructure links in distributed data store
* that uses optimistic replication and gossip based techniques.
*/
@Component(immediate = true)
@Component(immediate = true, enabled = false)
@Service
public class GossipLinkStore
extends AbstractStore<LinkEvent, LinkStoreDelegate>
......