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; ...@@ -85,7 +85,7 @@ import com.google.common.util.concurrent.Futures;
85 /** 85 /**
86 * Manages the inventory of links using a {@code EventuallyConsistentMap}. 86 * Manages the inventory of links using a {@code EventuallyConsistentMap}.
87 */ 87 */
88 -@Component(immediate = true, enabled = false) 88 +@Component(immediate = true, enabled = true)
89 @Service 89 @Service
90 public class ECLinkStore 90 public class ECLinkStore
91 extends AbstractStore<LinkEvent, LinkStoreDelegate> 91 extends AbstractStore<LinkEvent, LinkStoreDelegate>
......
...@@ -99,7 +99,7 @@ import static org.slf4j.LoggerFactory.getLogger; ...@@ -99,7 +99,7 @@ import static org.slf4j.LoggerFactory.getLogger;
99 * Manages inventory of infrastructure links in distributed data store 99 * Manages inventory of infrastructure links in distributed data store
100 * that uses optimistic replication and gossip based techniques. 100 * that uses optimistic replication and gossip based techniques.
101 */ 101 */
102 -@Component(immediate = true) 102 +@Component(immediate = true, enabled = false)
103 @Service 103 @Service
104 public class GossipLinkStore 104 public class GossipLinkStore
105 extends AbstractStore<LinkEvent, LinkStoreDelegate> 105 extends AbstractStore<LinkEvent, LinkStoreDelegate>
......