You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Two unrelated CI failures on PR #130, both fixed:
1. staticcheck 2024.1.1 errors with "internal error in importing
internal/byteorder (unsupported version: 2)" against Go 1.25's
stdlib. Bump pin to 2025.1.1.
2. Java parity job called `graph -f json` without enriching to Neo4j
first; the H2 cache alone isn't enough — graph reads from Neo4j
under the serving profile. Now we run `enrich -Dspring.profiles.active=serving`
between index and graph, then invoke graph from inside the fixture
directory so the Neo4j path resolves relative to where enrich
wrote it.
Drive-by: staticcheck 2025.1.1 surfaced legitimate dead code that
2024.1.1 was missing:
- containsInfra (internal/flow/builders.go) — unused helper, removed
- edgeColumns (internal/graph/bulk.go) — unused var, removed
- runtimeEdgeKinds (internal/query/service.go) — unused var, removed
- fileReadCounter (intelligence/extractor/enricher_test.go) — unused
test type, removed
- allUnsupported (intelligence/query/planner_test.go) — unused helper, removed
- Two append-from-loop simplifications (internal/flow/builders.go)
- parity/open_ro.go marked with //go:build parity so staticcheck
honors the build tag and doesn't flag the function as unused
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
0 commit comments