arrow_backRetour aux issues
gougoujiang/buildmax
#128
Débutant
Ouvrirarrow_forward
Débutant
Ouvrirarrow_forward
Débutant
Ouvrirarrow_forward
Server architecture doc points at a file that no longer exists
ecoDébutant
documentation
good first issue
descriptionDescription
## Page or file
`docs/contribute/architecture/server.md`, the "Conversation Turns" section
(around line 57).
## What is stale
It says the turn queue lives here:
> `turnRegistry` on the `Handler` (`internal/server/handlers/conversation_turns.go`)
That file does not exist. The turn queue is now its own package,
`internal/server/turnqueue`, and its callers are `internal/server/websocket/conn.go`,
`internal/server/handlers/config.go`, and `internal/server/handlers/work/`.
The behaviour the paragraph describes is still correct — one turn per
conversation, server-scoped rather than connection-scoped, every path
serialized into the same queue. Only the location is wrong, which makes the
paragraph worse than useless for someone trying to read the code it describes.
## What would help
Update the reference to `internal/server/turnqueue`, and check whether
`turnRegistry` is still the right name for what the section calls it — the
package exports its own type, so the sentence may read better in terms of that.
`AGENTS.md` asks that architecture documents stay factual about current code,
so this is exactly the kind of drift worth fixing.
## Verify
```bash
ls internal/server/handlers/conversation_turns.go # No such file
grep -rln "turnqueue" internal/server/ | grep -v _test
./make check docs
```
Issues similaires
medik8s/fence-agents-remediation
star18
Poids du dépôt moyen
v0.8.0 starts a cluster-scoped Secret informer despite namespace-scoped Secret RBAC
## Description While testing Fence Agents Remediation (FAR) v0.8.0, I observed the manager repeatedly attempting to li…
Go
good first issue
Wayfare-labs/wayfare
star1
Poids du dépôt léger
Check that an issuer's home_domain round-trips to the same stellar.toml
Written to the standard set by #33 — read that issue first for the expected level of detail and the acceptance criteria…
Go
help wanted
area:corridor
Wayfare-labs/wayfare
star1
Poids du dépôt léger
Report auth_immutable: whether an issuer's flags can still change
> **This issue is the reference standard.** Every other check issue links back here for the expected level of detail. I…
Go
help wanted
good first issue