We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cec6c0 commit 708fe1cCopy full SHA for 708fe1c
src/sentry/conf/server.py
@@ -53,9 +53,9 @@
53
54
DATABASES = {
55
'default': {
56
- 'ENGINE': 'django.db.backends.sqlite3',
57
- 'NAME': 'sentry.db',
58
- 'USER': '',
+ 'ENGINE': 'sentry.db.postgres',
+ 'NAME': 'sentry',
+ 'USER': 'postgres',
59
'PASSWORD': '',
60
'HOST': '',
61
'PORT': '',
@@ -360,7 +360,7 @@
360
# Queue configuration
361
from kombu import Exchange, Queue
362
363
-BROKER_URL = "django://"
+BROKER_URL = "redis://localhost:6379"
364
BROKER_TRANSPORT_OPTIONS = {}
365
366
# Ensure workers run async by default
src/sentry/data/config/sentry.conf.py.default
@@ -14,6 +14,8 @@ DATABASES = {
14
15
16
17
+ 'AUTOCOMMIT': True,
18
+ 'ATOMIC_REQUESTS': False,
19
}
20
21
0 commit comments