docs(config): fix ODoH relay path in numa.toml example #139
Reference in New Issue
Block a user
Delete Branch "fix/odoh-relay-doc-path"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
numa.tomlline 46 advertised the ODoH relay athttps://odoh-relay.numa.rs/proxy, but the live server only serves/relay(returns 404 on/proxy, 405 onGET /relayas expected for an ODoH POST endpoint)./relay—src/config.rsrustdoc + tests,packaging/client/numa.toml— so this was an isolated typo introduced in2e461cc("docs(config): add ODoH upstream examples…"), shipped in 0.14.2.UPSTREAM ERROR | ODoH relay returned 404 Not Found→ SERVFAIL on every query.Reported by @bcookatpcsd in #138. Their workaround (swapping in
odoh-relay.edgecompute.app) confirmed the relay choice wasn't at fault — only the path.Test plan
curl -I https://odoh-relay.numa.rs/relay→ 405 (method not allowed on GET, correct)curl -I https://odoh-relay.numa.rs/proxy→ 404