Description
When using dynamicallyIncludedDestinations with a network of brokers, if a durable subscription is removed, and then the same one is recreated again, it will no longer receive messages from a networked broker.
The issue is that the networked broker thinks the original subscription demand is still there so that when it is re-created, it doesn't re-create the demand subscription. This happens in the createDemandSubscription method in DurableConduitBridge. The check for addToAlreadyInterestedConsumers is returning true even though there is no currently interested consumers.