From 4e845995425f5a73ec11cd3d3f3e75dcba33d233 Mon Sep 17 00:00:00 2001 From: Burak Yigit Kaya Date: Tue, 18 Jun 2019 22:26:47 +0300 Subject: [PATCH] fix(config): Remove autocommit option from DB config (#195) Django 1.7 already defaults to `True` for this and in Django 1.8, which is what the latest Sentry uses, the option is removed and causes a DB connection error so dropping it to fix git builds. --- sentry.conf.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/sentry.conf.py b/sentry.conf.py index 4f9311a..3a8dde4 100644 --- a/sentry.conf.py +++ b/sentry.conf.py @@ -83,9 +83,6 @@ if postgres: env('SENTRY_POSTGRES_PORT') or '' ), - 'OPTIONS': { - 'autocommit': True, - }, }, }