hotfix: revert layoutparsingResponseQueue changes that is not in persistence-service, should be done in migration to 4.0.0

This commit is contained in:
Dominique Eifländer 2024-04-24 15:24:19 +02:00
parent df0bbc92c7
commit 07da43f2d9

View File

@ -24,7 +24,8 @@ public class MessagingConfiguration {
@Bean
public Queue layoutparsingResponseQueue() {
return QueueBuilder.durable(LayoutParsingQueueNames.LAYOUT_PARSING_FINISHED_EVENT_QUEUE).build();
return QueueBuilder.durable(LayoutParsingQueueNames.LAYOUT_PARSING_FINISHED_EVENT_QUEUE)//
.withArgument("x-dead-letter-exchange", "").withArgument("x-dead-letter-routing-key", LayoutParsingQueueNames.LAYOUT_PARSING_DLQ).build();
}