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
The type of the id field in server response message is always strnow.
The LSP client can't get response for {"id": 1, "method": "initialize} request because pygls will respond with {"id": "1", "result": {...}} and 1 != "1".
Can we please have the id in the response exactly the same as in the request?
The text was updated successfully, but these errors were encountered:
The type of the
id
field in server response message is alwaysstr
now.The LSP client can't get response for
{"id": 1, "method": "initialize}
request because pygls will respond with{"id": "1", "result": {...}}
and1 != "1"
.Can we please have the
id
in the response exactly the same as in the request?The text was updated successfully, but these errors were encountered: