I am using the .net client for connecting to RabbitMQ server running HA mode, and all queues are with the following configuration.
Queue are with the following configuration
- QueueName = ""; // auto generated
- Exclusive = false;
- AutoDelete = true;
- Durable = false
- Argumenets==> x-ha-policy, all (for HA server mode)
I am seeing this behaviour that after the process is idled for a long time say 10 mins ish, the connection started to drop hence the queue gets deleted automatically.
Is there an idle setting or timeout setting? or what are the possible reason for the connection to close automatically in RabbitMQ .net client.