ci: bump Go test timeout 15m -> 20m (server + ingestor)#1750
Merged
Kpa-clawbot merged 1 commit intoJun 19, 2026
Conversation
ci: bump Go test timeout 15m -> 20m (server + ingestor) The server Go suite runs ~13-15m against a 15m ceiling and has intermittently hit `panic: test timed out after 15m0s` (cmd/server, e.g. db_test.go) on slower runners, producing false-red CI that a plain rerun clears. Bump both `go test` invocations to 20m to give headroom; no test or application changes. Co-Authored-By: Erwin Fiten <erwin.fiten@gmail.com> Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> @
Owner
🤖 Hourly PR-watch reviewVerdict: APPROVE — trivial CI timeout bump Diff is two characters: TDD exemptionPure config change. AGENTS.md TDD-exempt rule applies: "existing tests MUST stay green AND unaltered" + "no test files modified" + "CI green without test edits." All three hold (CI green ✅, no test files in diff ✅). Findings: 0 BLOCKER / 0 MAJOR / 1 NIT
3-axis merge gate
Auto-merging. Reviewed by: orchestrator self-review (CI config, no code surface). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The server Go suite runs ~13–15m against a 15m
go test -timeout, so on slower CI runners it intermittently hitspanic: test timed out after 15m0s(cmd/server, e.g.db_test.go) — false-red CI that a plain rerun clears. Observed on PR #1728 (15m25s on the passing attempt — right at the ceiling).Fix
Bump both
go testinvocations (cmd/serverandcmd/ingestor) from-timeout 15mto-timeout 20mfor headroom. No test or application code changes — CI workflow only.Verification
Workflow-only change; this PR's own CI is the confirmation.
🤖 Generated with Claude Code