Quorum queues don't perform election without a good reason (loss of the leader, an explicit rebalance, node failure, etc).
If you see "detected a new leader" logs that you don't expect (you didn't attempt any restarts nor rebalances), this suggests
there are intermittent connectivity issues between RabbitMQ nodes. That also explains the "suspected_down" status for consumers.
So the leader change doesn't cause suspected_down status nor the stop of message processing but rather, there's a common
cause for the leader change and the consumer issue.
What happens later? Does message processing resume after some time? If not, then perhaps there's something to be improved
in how the cluster partition is handled but if you see a lot of unexpected leader changes, that's the main issue to be addressed - for some
reason communication between the nodes is not stable.
Best,