diff --git a/auth-agents-common/src/main/java/org/apache/atlas/plugin/util/PolicyRefresher.java b/auth-agents-common/src/main/java/org/apache/atlas/plugin/util/PolicyRefresher.java index 12026375b1..b18906dde4 100644 --- a/auth-agents-common/src/main/java/org/apache/atlas/plugin/util/PolicyRefresher.java +++ b/auth-agents-common/src/main/java/org/apache/atlas/plugin/util/PolicyRefresher.java @@ -117,7 +117,7 @@ public PolicyRefresher(RangerBasePlugin plugIn) { this.atlasConfig = ApplicationProperties.get(); this.auditRepository = new ESBasedAuditRepository(atlasConfig); this.auditRepository.start(); - this.enableDeltaBasedRefresh = false; // this.atlasConfig.getBoolean(DELTA_BASED_REFRESH, false); + this.enableDeltaBasedRefresh = this.atlasConfig.getBoolean(DELTA_BASED_REFRESH, false); } catch (AtlasException e) { LOG.error("PolicyDelta: Error while reading atlas configuration", e); this.enableDeltaBasedRefresh = false;