Should one want to redeliver a MassTransit message in the future, because for example they'd like to solve a race issue, their redelivered message will be ignored, because this filter will suppress it. I mean redelivering in the handler via:
await context.Redeliver(TimeSpan.FromMinutes(1));
return;
Currently the only way to redeliver message is to throw an exception, which clutters the logs.
Should one want to redeliver a MassTransit message in the future, because for example they'd like to solve a race issue, their redelivered message will be ignored, because this filter will suppress it. I mean redelivering in the handler via:
Currently the only way to redeliver message is to throw an exception, which clutters the logs.