From 3f3a1fb33e3e45f2de7e025c92fd65e34170def6 Mon Sep 17 00:00:00 2001 From: rob thijssen Date: Tue, 5 May 2026 14:22:42 +0300 Subject: [PATCH] fix: connection string --- script/hg-ingest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/hg-ingest.sh b/script/hg-ingest.sh index d5f1aa4..f4464e6 100755 --- a/script/hg-ingest.sh +++ b/script/hg-ingest.sh @@ -13,7 +13,7 @@ # set -euo pipefail -DATABASE_URL="${DATABASE_URL:-postgres://moments_rw@magrathea.kosherinata.internal/moments:5432?sslmode=verify-full&sslrootcert=/etc/pki/ca-trust/source/anchors/root-internal.pem&sslcert=/etc/pki/tls/misc/$(hostname -f).pem&sslkey=/etc/pki/tls/private/$(hostname -f).pem}" +DATABASE_URL="${DATABASE_URL:-postgres://moments_rw@magrathea.kosherinata.internal:5432/moments?sslmode=verify-full&sslrootcert=/etc/pki/ca-trust/source/anchors/root-internal.pem&sslcert=/etc/pki/tls/misc/$(hostname -f).pem&sslkey=/etc/pki/tls/private/$(hostname -f).pem}" HG_HOST="${HG_HOST:-hg-edge.mozilla.org}" WORK_DIR="${HG_WORK_DIR:-~/hg}"