Madan Jampani

Enabling StorageManager

Change-Id: Ice415dc217d8cf6fc990776ed4d71c1bafe55ccb
...@@ -69,7 +69,7 @@ public interface DistributedPrimitive { ...@@ -69,7 +69,7 @@ public interface DistributedPrimitive {
69 TRANSACTION_CONTEXT 69 TRANSACTION_CONTEXT
70 } 70 }
71 71
72 - static final long DEFAULT_OPERTATION_TIMEOUT_MILLIS = 5000L; 72 + static final long DEFAULT_OPERTATION_TIMEOUT_MILLIS = 60000L;
73 73
74 /** 74 /**
75 * Returns the name of this primitive. 75 * Returns the name of this primitive.
......
...@@ -97,7 +97,7 @@ import com.google.common.util.concurrent.Futures; ...@@ -97,7 +97,7 @@ import com.google.common.util.concurrent.Futures;
97 /** 97 /**
98 * Database manager. 98 * Database manager.
99 */ 99 */
100 -@Component(immediate = true, enabled = true) 100 +@Component(immediate = true, enabled = false)
101 @Service 101 @Service
102 public class DatabaseManager implements StorageService, StorageAdminService { 102 public class DatabaseManager implements StorageService, StorageAdminService {
103 103
......
...@@ -68,7 +68,7 @@ import static org.onosproject.security.AppPermission.Type.*; ...@@ -68,7 +68,7 @@ import static org.onosproject.security.AppPermission.Type.*;
68 * Implementation for {@code StorageService} and {@code StorageAdminService}. 68 * Implementation for {@code StorageService} and {@code StorageAdminService}.
69 */ 69 */
70 @Service 70 @Service
71 -@Component(immediate = true, enabled = false) 71 +@Component(immediate = true, enabled = true)
72 public class StorageManager implements StorageService, StorageAdminService { 72 public class StorageManager implements StorageService, StorageAdminService {
73 73
74 private final Logger log = getLogger(getClass()); 74 private final Logger log = getLogger(getClass());
......