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
fix(config): remove dead read_header_timeout setting (fasthttp has no such field)
fasthttp uses a single ReadTimeout covering the full read phase (headers +
body). The separate read_header_timeout config field was parsed and defaulted
but never applied to the server — dead code since the fasthttp migration.
- Remove struct field, default, and env override from config.go
- Remove assertion from config_test.go
- Remove from both config.toml.example files
- Update README.md, USER_GUIDE.md, docs/index.html: remove setting from
config tables and env vars tables, note ReadTimeout provides Slowloris
protection
0 commit comments