I have an email service that handles a message and does not return any responses.
The messages are coming into the inq ready to be processed and once processed it goes to the outq, here the number of messages on the outq are forever growing.
My question is for messages with no responses are we expected to manually ack all outq messages? Or have I missed a step?
Apologies DisablePublishingResponses only prevents re-publishing Service Responses into the .inq of the Response DTO.
There was no option for disabling publishing .outq messages since they’re transient but I’ve added a new PublishToOutqWhitelist and DisablePublishingToOutq options for disabling publishing to .outq with:
var mqServer = new RabbitMqServer(..) {
DisablePublishingToOutq = true
};