Skip to content
This repository has been archived by the owner on Apr 8, 2019. It is now read-only.

GTNPORTAL-3300 Add possibility to invalidate items in IntegrationCache v... #755

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,10 @@ public void invalidate(@ManagedDescription("Cache namespace") @ManagedName("name
cacheProvider.invalidate(namespace);
}

for (IntegrationCache cacheProvider : integrationCache) {
cacheProvider.invalidate(namespace);
}

for (IdentityStoreCacheProvider cacheProvider : storeCacheProviders) {
cacheProvider.invalidate(namespace);
}
Expand Down