Skip to content

Commit aae2094

Browse files
DavidRajnohaclaude
andcommitted
fix(tests): increase Phase 1 alert firing timeout to 20 minutes
The Thanos Querier API check timed out at 15 minutes — the alert needs more time to propagate through Prometheus rule evaluation. Increase Phase 1 to 20 minutes and adjust Phase 2 to 15 minutes (total 35 min budget, same as the original 30 min single-phase approach but with the OOM-safe split). CI run: https://prow.ci.openshift.org/view/gs/test-platform-results/pr-logs/pull/openshift_monitoring-plugin/860/pull-ci-openshift-monitoring-plugin-main-e2e-incidents/2038878665416118272 Classifications: TEST_BUG (Phase 1 timeout too short) 22/23 tests passed — no OOM, fix working. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent c78c136 commit aae2094

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

web/cypress/e2e/incidents/00.coo_incidents_e2e.cy.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ describe('BVT: Incidents - e2e', { tags: ['@smoke', '@slow', '@incidents', '@e2e
5858
).then((result) => result.code === 0 && result.stdout.includes(currentAlertName)),
5959
{
6060
interval: 30_000,
61-
timeout: 15 * 60_000,
62-
errorMsg: `Alert ${currentAlertName} not firing on cluster within 15 minutes`,
61+
timeout: 20 * 60_000,
62+
errorMsg: `Alert ${currentAlertName} not firing on cluster within 20 minutes`,
6363
}
6464
);
6565

@@ -71,7 +71,7 @@ describe('BVT: Incidents - e2e', { tags: ['@smoke', '@slow', '@incidents', '@e2e
7171
() => incidentsPage.findIncidentWithAlert(currentAlertName),
7272
{
7373
interval: 2 * intervalMs,
74-
timeout: 20 * intervalMs,
74+
timeout: 15 * intervalMs,
7575
}
7676
);
7777

0 commit comments

Comments
 (0)