From e0dbd339a3a49af3f91ff68263422bdaf6a1b405 Mon Sep 17 00:00:00 2001 From: Ben Adida <ben@adida.net> Date: Thu, 22 Oct 2015 23:10:50 +0000 Subject: [PATCH] remove dbpool --- settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.py b/settings.py index 25fbcb2..ba2ac4f 100644 --- a/settings.py +++ b/settings.py @@ -41,7 +41,7 @@ SOUTH_DATABASE_ADAPTERS = {'default':'south.db.postgresql_psycopg2'} if get_from_env('DATABASE_URL', None): import dj_database_url DATABASES['default'] = dj_database_url.config() - DATABASES['default']['ENGINE'] = 'dbpool.db.backends.postgresql_psycopg2' + DATABASES['default']['ENGINE'] = 'django.db.backends.postgresql_psycopg2' DATABASES['default']['OPTIONS'] = {'MAX_CONNS': 1} # Local time zone for this installation. Choices can be found here: -- GitLab