Problem
pkg/parser/remote_fetch_integration_test.go imports the context package at line 6 but never uses context.xxx directly (functions use t.Context() which is a method on *testing.T, not the context package).
This causes a build failure in integration tests:
pkg/parser/remote_fetch_integration_test.go:6:2: "context" imported and not used
FAIL github.com/github/gh-aw/pkg/parser [build failed]
Impact
Breaking CI on main — Integration: Parser Remote Fetch & Cache and Integration Unauthenticated Add (Public Repo) jobs fail on every CI run.
CI success rate: ~50% today due to this. Affected runs: §28696524336, §28696072140, §28695863684. Previous fix attempt PR #43306 was closed without merge. The arc_dind_artifacts.go and log_parser_bootstrap issues were fixed in #43316 but this context import was not included.
Fix
Remove the "context" import from line 6 of pkg/parser/remote_fetch_integration_test.go. The file uses t.Context() (a method on *testing.T available in Go 1.21+), not the standalone context package.
Generated by 🏥 Workflow Health Manager - Meta-Orchestrator · 212.4 AIC · ⌖ 5.25 AIC · ⊞ 7.8K · ◷
Problem
pkg/parser/remote_fetch_integration_test.goimports thecontextpackage at line 6 but never usescontext.xxxdirectly (functions uset.Context()which is a method on*testing.T, not thecontextpackage).This causes a build failure in integration tests:
Impact
Breaking CI on
main—Integration: Parser Remote Fetch & CacheandIntegration Unauthenticated Add (Public Repo)jobs fail on every CI run.CI success rate: ~50% today due to this. Affected runs: §28696524336, §28696072140, §28695863684. Previous fix attempt PR #43306 was closed without merge. The
arc_dind_artifacts.goandlog_parser_bootstrapissues were fixed in #43316 but thiscontextimport was not included.Fix
Remove the
"context"import from line 6 ofpkg/parser/remote_fetch_integration_test.go. The file usest.Context()(a method on*testing.Tavailable in Go 1.21+), not the standalonecontextpackage.