summary refs log tree commit diff
path: root/.ci/scripts/postgres_exec.py
diff options
context:
space:
mode:
authorDavid Robertson <davidr@element.io>2021-08-12 13:05:23 +0100
committerGitHub <noreply@github.com>2021-08-12 13:05:23 +0100
commit4a76d01ff7e063354e4d1b9333891559ab72c1bf (patch)
tree0f5f2eeb808e9e0687d20489060a31bf00104da9 /.ci/scripts/postgres_exec.py
parentUpdate the pagination parameter name based on MSC2946 review. (#10579) (diff)
parentRemove buildkite-era comment (diff)
downloadsynapse-4a76d01ff7e063354e4d1b9333891559ab72c1bf.tar.xz
Merge pull request #10573 from DMRobertson/dmr/goodbye-buildkite
Remove references to BuildKite in favour of GitHub Actions
Diffstat (limited to '')
-rwxr-xr-x.ci/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()