RED-9139: move document to module in redaction-service

* add feature version
This commit is contained in:
Kilian Schuettler 2024-11-14 14:34:30 +01:00
parent 42185a95a0
commit 8005c1f25f

View File

@ -52,6 +52,7 @@ public class MessageHandler {
throw new AmqpRejectAndDontRequeueException(String.format("Error during last layout parsing of request with identifier: %s, do not retry.", throw new AmqpRejectAndDontRequeueException(String.format("Error during last layout parsing of request with identifier: %s, do not retry.",
layoutParsingRequest.identifier())); layoutParsingRequest.identifier()));
} }
log.info("--------------------------------- Starting layoutparsing ---------------------------------");
LayoutParsingFinishedEvent layoutParsingFinishedEvent = layoutParsingPipeline.parseLayoutAndSaveFilesToStorage(layoutParsingRequest); LayoutParsingFinishedEvent layoutParsingFinishedEvent = layoutParsingPipeline.parseLayoutAndSaveFilesToStorage(layoutParsingRequest);
sendLayoutParsingFinishedEvent(layoutParsingFinishedEvent, message); sendLayoutParsingFinishedEvent(layoutParsingFinishedEvent, message);
} }
@ -71,6 +72,7 @@ public class MessageHandler {
m.getMessageProperties().getHeaders().putAll(forwardHeaders); m.getMessageProperties().getHeaders().putAll(forwardHeaders);
return m; return m;
}); });
log.info("--------------------------------- Finished layoutparsing ---------------------------------");
} }
} }