Skip to content

Commit

Permalink
Enable diff based policy refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
krsoninikhil committed Sep 20, 2024
1 parent 96a12b8 commit cd8fb8a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit cd8fb8a

Please sign in to comment.