use of com.emc.storageos.coordinator.client.model.DbConsistencyStatus in project coprhd-controller by CoprHD.
the class DbConsistencyChecker method setNextCheckType.
private void setNextCheckType() {
if (toConsole) {
return;
}
CheckType checkType = getCheckTypeFromZK();
if (!checkType.hasNext()) {
return;
}
DbConsistencyStatus status = getStatusFromZk();
status.update(checkType.getNext().name(), null);
persistStatus(status);
}
Aggregations