m4l
m4l
Experiencing the same problem on Ubuntu 14.04, this will fail for me on 2nd run: ``` if not fabtools.postgres.user_exists(db_user): require.postgres.user(db_user, password=db_password) ```
I struggle to make the solution work in production with gunicorn started by supervisord, I fail to make my gunicorn_conf.py see my django settings. It looks like this at the...
Ok, I could fix the IDLE connections building up with this, thanks to @dn0: from django.db import close_old_connections class MyNamespace(BaseNamespace): ... ``` def recv_disconnect(self): close_old_connections() def exception_handler_decorator(self, fun): def wrap(*args,...