Using Airflow with RabbitMQ produces these RabbitMQ logs that seem to mean it's not properly closing connections interally. rabbitmq-1 | 2025-01-02 19:12:24.816895+00:00 [info] <0.1548.0> accepting AMQP connection <0.1548.0> (172.19.0.8:34678 -> 172.19.0.2:5672) rabbitmq-1 | 2025-...
I think the issue was that on terminate/2 on rabbit_federation_exchange_link.erl, because it tried to clean some state before closing the TCP connection and that code path blow up trying to create a channel on a closing/closed connection, the direct connection was never closed on that termi...