Summary
The openhuman.system_info RPC method is not registered in the core dispatch, returning "unknown method" errors.
Problem
What happened: A client calls openhuman.system_info but the method isn't registered in the controller registry. Returns "unknown method".
Expected: The method should either be registered with a proper handler, or aliased to an existing method if it was renamed.
Impact: 1 event in Sentry (CORE-RUST-G0), Linux user.
Version / Platform: openhuman@0.56.0, Linux 6.8.0-111-generic, rustc 1.93.0
Solution (optional)
Same pattern as PR #2803 (MCP aliases) and PR #2853 (health_snapshot alias). Either:
- Add a legacy alias in
src/core/legacy_aliases.rs mapping to the correct method
- Or register the method handler if it exists but isn't wired
Acceptance criteria
Related
Summary
The
openhuman.system_infoRPC method is not registered in the core dispatch, returning "unknown method" errors.Problem
What happened: A client calls
openhuman.system_infobut the method isn't registered in the controller registry. Returns "unknown method".Expected: The method should either be registered with a proper handler, or aliased to an existing method if it was renamed.
Impact: 1 event in Sentry (CORE-RUST-G0), Linux user.
Version / Platform: openhuman@0.56.0, Linux 6.8.0-111-generic, rustc 1.93.0
Solution (optional)
Same pattern as PR #2803 (MCP aliases) and PR #2853 (health_snapshot alias). Either:
src/core/legacy_aliases.rsmapping to the correct methodAcceptance criteria
openhuman.system_inforesolves correctlyRelated