Skip to content

Commit

Permalink
Merge pull request #3534 from atlanhq/ns/DG-1709-refresh-delta-policies
Browse files Browse the repository at this point in the history
DG-1707 | Enable diff based policy refresh
  • Loading branch information
krsoninikhil committed Sep 20, 2024
2 parents 96a12b8 + cd8fb8a commit 3da01ab
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 3da01ab

Please sign in to comment.