Skip to content

Commit

Permalink
Fix rebasing
Browse files Browse the repository at this point in the history
Signed-off-by: David Schwilk <david.schwilk@bosch.io>
  • Loading branch information
DerSchwilk committed Oct 25, 2021
1 parent 763bfb7 commit 9604eb3
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,7 @@ private EnforcementFlow(final ActorSystem actorSystem,
final AskWithRetryConfig askWithRetryConfig,
final StreamCacheConfig streamCacheConfig,
final int maxArraySize,
final Executor cacheDispatcher,
final boolean deleteImmediately) {
final Executor cacheDispatcher) {

thingsFacade = createThingsFacade(actorSystem, thingsShardRegion, askWithRetryConfig.getAskTimeout(),
streamCacheConfig, cacheDispatcher);
Expand Down Expand Up @@ -118,8 +117,7 @@ public static EnforcementFlow of(final ActorSystem actorSystem,
.projectValues(PolicyEnforcer::project, PolicyEnforcer::embed);

return new EnforcementFlow(actorSystem, thingsShardRegion, policyEnforcerCache, askWithRetryConfig,
streamCacheConfig, updaterStreamConfig.getMaxArraySize(), cacheDispatcher,
deleteImmediately);
streamCacheConfig, updaterStreamConfig.getMaxArraySize(), cacheDispatcher);
}

private static EnforcementCacheKey getPolicyCacheKey(final PolicyId policyId) {
Expand Down

0 comments on commit 9604eb3

Please sign in to comment.