2
0

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.
This commit is contained in:
Burak Yigit Kaya 2019-06-18 22:26:47 +03:00 committed by GitHub
parent 7e48342757
commit 4e84599542
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -83,9 +83,6 @@ if postgres:
env('SENTRY_POSTGRES_PORT')
or ''
),
'OPTIONS': {
'autocommit': True,
},
},
}