From ab812c70582e659cf1d5fba652e033827e32bc65 Mon Sep 17 00:00:00 2001 From: Andreas Karlsson Date: Wed, 30 Apr 2025 19:29:58 +0200 Subject: [PATCH] Increase pg_ctl timeout when running with code coverage We get random timeouts from pg_ctl in the coverage build only so let's increase the timeout from 60 to 120 seconds. These timeouts might indicate that we have some issue with recovery being too slow in general but for now let's just increase the timeout to avoid random test failures. --- .github/workflows/coverage.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 32b2e17b496..805be41ba7a 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -5,6 +5,9 @@ on: branches: - TDE_REL_17_STABLE +env: + PGCTLTIMEOUT: 120 # Avoid failures on slow recovery + jobs: collect: name: Collect and upload