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
### Proposed Changes
The Config struct had two places where tracing.Config was embedded:
- config.Config.Trace (root level) - UNUSED
- server.Config.Trace (under server) - ACTUALLY USED
Only cfg.Server.Trace was ever passed to tracing.InitTracer in start.go,
making the root-level Trace field dead code.
Changes:
- Remove unused Trace field from config.Config struct
- Remove unused tracing package import from config.go
- Fix docs to use correct server.trace.* paths instead of trace.*
- Move Tracing Configuration section under Server Configuration in docs
- Add YAML example showing correct configuration structure
### Checklist
- [ ] I have added or updated unit tests
- [ ] I have added or updated integration tests (if appropriate)
- [ ] I have added or updated documentation
### Testing Instructions
0 commit comments