From fac3db2d14b8fb077bb6be6e78522aecd774a7cb Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Tue, 16 Jul 2019 18:20:56 +0100 Subject: [PATCH] Remove localhost from the Sqitch config This means it'll connect over the socket, like the application. --- sqitch.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sqitch.conf b/sqitch.conf index 96dc2ed..510eed3 100644 --- a/sqitch.conf +++ b/sqitch.conf @@ -7,6 +7,6 @@ # registry = sqitch # client = psql [target "guix_data_service_test"] - uri = db:pg://guix_data_service@localhost/guix_data_service_test + uri = db:pg://guix_data_service@/guix_data_service_test [target "guix_data_service"] - uri = db:pg://guix_data_service@localhost/guix_data_service + uri = db:pg://guix_data_service@/guix_data_service