Skip to content

Commit 2a94952

Browse files
committed
fix(devservices): Fix postgres suddenly failing after their 'patch' release
See docker-library/postgres#658 (review) and getsentry/self-hosted@6979959
1 parent bd2d480 commit 2a94952

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sentry/conf/server.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1346,7 +1346,7 @@ def create_partitioned_queues(name):
13461346
"postgres": {
13471347
"image": "postgres:9.6-alpine",
13481348
"ports": {"5432/tcp": 5432},
1349-
"environment": {"POSTGRES_DB": "sentry"},
1349+
"environment": {"POSTGRES_DB": "sentry", "POSTGRES_HOST_AUTH_METHOD": "trust"},
13501350
"volumes": {"postgres": {"bind": "/var/lib/postgresql/data"}},
13511351
},
13521352
"zookeeper": {

0 commit comments

Comments
 (0)