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 47af4f9e2c
commit efde5cb779

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.",
layoutParsingRequest.identifier()));
}
log.info("--------------------------------- Starting layoutparsing ---------------------------------");
LayoutParsingFinishedEvent layoutParsingFinishedEvent = layoutParsingPipeline.parseLayoutAndSaveFilesToStorage(layoutParsingRequest);
sendLayoutParsingFinishedEvent(layoutParsingFinishedEvent, message);
}
@ -71,6 +72,7 @@ public class MessageHandler {
m.getMessageProperties().getHeaders().putAll(forwardHeaders);
return m;
});
log.info("--------------------------------- Finished layoutparsing ---------------------------------");
}
}