Madan Jampani

Enabling StorageManager

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