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
Answer unknown methods with METHOD_NOT_FOUND before the initialize gate
The runner's pre-initialize gate rejected every non-exempt request with
INVALID_PARAMS, including methods the server does not know at all.
JSON-RPC 2.0 reserves -32601 for unknown methods regardless of session
state, and clients probing a server before the handshake key off that
code. Check for unknown methods before the gate; known-but-ungated
methods keep the existing rejection. METHOD_NOT_FOUND errors now carry
the method name in the error data.
0 commit comments