From a57cdf7157c15a26cb0252378f4dafe9b5360ebd Mon Sep 17 00:00:00 2001 From: maverickstuder Date: Wed, 27 Mar 2024 15:12:27 +0100 Subject: [PATCH] RED-8702: Explore document databases to store entityLog * partial fix for wrong service call --- .../redaction/v1/server/storage/RedactionStorageService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/storage/RedactionStorageService.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/storage/RedactionStorageService.java index 99e51913..58904855 100644 --- a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/storage/RedactionStorageService.java +++ b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/storage/RedactionStorageService.java @@ -212,7 +212,7 @@ public class RedactionStorageService { public List findEntriesWithIds(String dossierId, String fileId, Collection entryIds) { - return entityLogMongoService.findAllEntityLogEntriesWithContainingNodeIdsWithEntryIdsIn(dossierId, fileId, entryIds); + return entityLogMongoService.findAllEntityLogEntriesWithEntryIdsIn(dossierId, fileId, entryIds); }