PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

gevent e posgres:falha na conexão assíncrona


há um artigo neste problema, infelizmente está em russo. Permitam-me citar a parte final:
class autoclose(object):
    def __init__(self, f=None):
        self.f = f

    def __call__(self, *args, **kwargs):
        with self:
            return self.f(*args, **kwargs)

    def __enter__(self):
        pass

    def __exit__(self, exc_type, exc_info, tb):
        from django.db import close_connection
        close_connection()
        return exc_type is None