summary refs log tree commit diff
path: root/ci/scripts/postgres_exec.py
diff options
context:
space:
mode:
authorDavid Robertson <david.m.robertson1@gmail.com>2021-08-10 13:11:43 +0100
committerDavid Robertson <david.m.robertson1@gmail.com>2021-08-10 16:38:13 +0100
commit58e5da5aa06ee4dc1ad5b2774e7bcd4eb9911a70 (patch)
tree1181b69d0d8dad6c8a72787529da2c64764cfb96 /ci/scripts/postgres_exec.py
parentRemove unused BUILDKITE_BRANCH env var (diff)
downloadsynapse-58e5da5aa06ee4dc1ad5b2774e7bcd4eb9911a70.tar.xz
Remove buildkite from portdb CI tests
Diffstat (limited to '')
-rwxr-xr-xci/scripts/postgres_exec.py (renamed from .buildkite/scripts/postgres_exec.py)2
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()