From 959ce26c85cff91421fc29f6d3ff6951e327693c Mon Sep 17 00:00:00 2001 From: garrettladley Date: Tue, 23 Jan 2024 14:12:31 -0500 Subject: [PATCH] increase num open connections in ghwf --- .github/workflows/go.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 56bd4e3f5..def51c6d0 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -73,6 +73,7 @@ jobs: - name: Increase max_connections in PostgreSQL run: | PG_CONFIG_FILE=$(psql -h 127.0.0.1 -p 5432 -U postgres -c "SHOW config_file;" -tA) + echo "Config file: $PG_CONFIG_FILE" sudo sed -i "s/^#max_connections = 100/max_connections = 200/" $PG_CONFIG_FILE sudo systemctl reload postgresql env: