Running on my dev machine as single user, I have a solution where I consume messages through EasyNetQ/Rabbitmq. Sending and subscribing works well.
Now, however, I'm debugging an issue in the message handler and during the debugging, I can see that the message is removed from Unacked and put back in Ready. This causes a new thread to be spawned and makes my debugging unnessarily hard.
Is there a way to let RabbitMq relax and give me a little more time before the message is resend?
BR, Anders