The queues in question will usually have a non-zero depth due to message rates, this is fine as long as the messages in the queue are always moving out of the queue.
We have a service that checks it for stalled messages. It gets the first message, waits, checks if it still there, continues forever. This of course fails when the queue has get inhibited.
Whenever we have a connection issue, even just a momentary failure, with a transmission queue it automatically has the Get permission set to inhibit. Is there anyway to not have this happen or have it ...