From 735cfdd6c4f8ffd6024f9803c7c5466205ebf7b4 Mon Sep 17 00:00:00 2001 From: Timo Date: Wed, 21 Apr 2021 18:53:29 +0300 Subject: [PATCH] reworked api --- redaction-service-v1/redaction-service-server-v1/pom.xml | 2 +- .../redaction/v1/server/queue/RedactionMessageReceiver.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/redaction-service-v1/redaction-service-server-v1/pom.xml b/redaction-service-v1/redaction-service-server-v1/pom.xml index f6b063f9..0a1a501e 100644 --- a/redaction-service-v1/redaction-service-server-v1/pom.xml +++ b/redaction-service-v1/redaction-service-server-v1/pom.xml @@ -29,7 +29,7 @@ com.iqser.red.service file-management-service-api-v1 - 2.7.2 + 2.7.4 com.iqser.red.service diff --git a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/queue/RedactionMessageReceiver.java b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/queue/RedactionMessageReceiver.java index 12b33ca1..2a08e4c8 100644 --- a/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/queue/RedactionMessageReceiver.java +++ b/redaction-service-v1/redaction-service-server-v1/src/main/java/com/iqser/red/service/redaction/v1/server/queue/RedactionMessageReceiver.java @@ -38,7 +38,7 @@ public class RedactionMessageReceiver { } log.info("Successfully analyzed {}", analyzeRequest); - fileStatusProcessingUpdateClient.analysisSuccessful(result); + fileStatusProcessingUpdateClient.analysisSuccessful(analyzeRequest.getProjectId(), analyzeRequest.getFileId(), result); } @RabbitHandler