use of org.apache.atlas.repository.IndexException in project incubator-atlas by apache.
the class GraphBackedSearchIndexer method rollback.
private void rollback(AtlasGraphManagement management) throws IndexException {
try {
management.rollback();
recomputeIndexedKeys = true;
} catch (Exception e) {
LOG.error("Index rollback failed ", e);
throw new IndexException("Index rollback failed ", e);
}
}
Aggregations