You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you see the mentioned reconnection logic here, you'll notice that the flow does not execute the following:
ifexecute_workaround_to_deal_with_rabbit_mq:
_create_dlq_queue(destination_name)
ifis_destination_from_virtual_topic(destination_name):
routing_key=get_subscription_destination(destination_name)
_create_queue(destination_name, routing_key=routing_key)
logger.info("Created/Refreshed queue to consume from topic in case of RabbitMQ...")
We only noticed it after a switch from ActiveMQ from RabbitMQ. In our case we had to redeploy all of our Apps in order to create the dead letter queues, as only a DNS configuration won't be enough because of this fault.
The text was updated successfully, but these errors were encountered:
If you see the mentioned reconnection logic here, you'll notice that the flow does not execute the following:
We only noticed it after a switch from ActiveMQ from RabbitMQ. In our case we had to redeploy all of our Apps in order to create the dead letter queues, as only a DNS configuration won't be enough because of this fault.
The text was updated successfully, but these errors were encountered: