We have: 2 queues - messages and error_messages, in case of an error, the message falls into error_message, each message has a unique ID.
The business process is as follows: the administrator monitors error_messages, makes edits for a specific message, and then restarts processing by moving the specific message back to the messages queue.
Now it is implemented in MsSql.
Question: Is it possible in rabbitmq to transfer only one message from one queue to another?
ps There is a command Move messages, but it transfers all messages, which is wasteful, you need to transfer only one message.