If you’re using pika as a #python #rabbitmq client and are getting “ConnectionClosed” exceptions, test or look very carefully through the code being executed — it is probably not a pika or rabbitmq issue but some other exception.
E.G. I just spent half an hour tearing apart pika connection handling code when it turns out the exceptions were caused by passing a dict
rather than an instance of template.Context
to template.render()
.