1 files changed, 1 insertions, 1 deletions
diff --git a/.buildkite/scripts/postgres_exec.py b/ci/scripts/postgres_exec.py
index 086b391724..0f39a336d5 100755
--- a/.buildkite/scripts/postgres_exec.py
+++ b/ci/scripts/postgres_exec.py
@@ -23,7 +23,7 @@ import psycopg2
# We use "postgres" as a database because it's bound to exist and the "synapse" one
# doesn't exist yet.
db_conn = psycopg2.connect(
- user="postgres", host="postgres", password="postgres", dbname="postgres"
+ user="postgres", host="localhost", password="postgres", dbname="postgres"
)
db_conn.autocommit = True
cur = db_conn.cursor()
|