From 46f0e0d14ae5bdd92622640ae45343ab3ebd66ae Mon Sep 17 00:00:00 2001 From: Bo Chen Date: Sat, 23 Nov 2024 09:41:50 -0800 Subject: [PATCH] ci: Increase rate-limiter worker timeout The rate-limiter worker was moved to use small Azure VMs (#6731) and now requires more time to complete. Increasing its timeout to stablize this worker. Signed-off-by: Bo Chen --- .github/workflows/integration-rate-limiter.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration-rate-limiter.yaml b/.github/workflows/integration-rate-limiter.yaml index 6dd682eb5..0fe38257f 100644 --- a/.github/workflows/integration-rate-limiter.yaml +++ b/.github/workflows/integration-rate-limiter.yaml @@ -28,7 +28,7 @@ jobs: sudo apt install -y docker-ce docker-ce-cli - name: Run rate-limiter integration tests if: ${{ github.event_name != 'pull_request' }} - timeout-minutes: 10 + timeout-minutes: 20 run: scripts/dev_cli.sh tests --integration-rate-limiter - name: Skipping build for PR if: ${{ github.event_name == 'pull_request' }}