Description
There are cases now where we are checking for expired Messages and DLQ'ing then and sending advisories when we don't really need to. One example is on destroy of a TempQueue we call purge in Queue which will end up removing all messages for the sake of freeing up their MemoryUsage but we end up processing expired Messages in this case which doesn't make a lot of sense since the destination is going away. More generally a do we really want to process expired on a Purge call?
These expired Messages lead to advisories and DLQ'd Message that might not really need to be done.