RED-9859: Redactions found by et. al. rule not skipped with published information #517

Open
maverick.studer wants to merge 5 commits from RED-9859 into master

View File

@ -1162,6 +1162,10 @@ public class EntityCreationService {
if (kieSession != null) {
kieSession.insert(textEntity);
textEntity.getIntersectingNodes()
.stream()
.filter(nodesInKieSession::contains)
.forEach(o -> kieSession.update(kieSession.getFactHandle(o), o));
}
}