From 48e7139e26baae09ea3d7d49b89cc6f680c3e35e Mon Sep 17 00:00:00 2001 From: "Sean M. Collins" Date: Mon, 10 Mar 2025 17:53:50 -0400 Subject: [PATCH] Set JETQUERY_POOL_SIZE in CI runs --- .github/workflows/CI.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index b2d2eea..691a17c 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -56,6 +56,9 @@ jobs: JETQUERY_USERNAME='postgres' JETQUERY_PASSWORD='postgres' JETQUERY_DATABASE='test' + # Assume a small amount of connections are allowed + # into postgres + JETQUERY_POOL_SIZE=1 - name: Build artifacts if: ${{ matrix.os == 'ubuntu-latest' }}