-
Notifications
You must be signed in to change notification settings - Fork 41
Description
Hi! First of all, want to say thank you for such a great plugin :)
My question is related to duplicated message processing. Currently, the plugin does not allow to add duplicated message to the queue at all. And I want to be able to add duplicated message to the queue when some message with same x-deduplication-header
already exists, but only in case that some consumer already processing this message.
So, assume we have messages with x-deduplication-header
= A, B, C, D, and messages C and D are already processing by some consumers.
Let's try to add a new message with x-deduplication-header
= C.
Current behavior: the message will be ignored.
Desired behavior: the message will be queued (even additional message with same x-deduplication-header
is already in the queue).
Does this possible?
Thanks in advance!