-
I am using Jedi in VSCode, and get this Output logged all the time, could you suggest any solution or debugging steps? 2024-06-14 13:23:51.297 [info] WARNING:pygls.protocol:Cancel notification for unknown message id "195"
2024-06-14 13:23:51.310 [info] WARNING:pygls.protocol:Cancel notification for unknown message id "196"
2024-06-14 13:23:51.325 [info] WARNING:pygls.protocol:Cancel notification for unknown message id "197"
2024-06-14 13:23:56.425 [info] WARNING:pygls.protocol:Cancel notification for unknown message id "202" |
Beta Was this translation helpful? Give feedback.
Answered by
alcarney
Jun 21, 2024
Replies: 1 comment
-
While annoying, these messages are fairly harmless. Say the client asks the server for a list of completions, it can decide before the server has had chance to respond that it no longer cares about the answer and send a cancellation - allowing the server to stop computing the answer. It looks like pygls does not handle these correctly, there was a previous thread on this but we probably need to look into this again. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ghsanti
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
While annoying, these messages are fairly harmless.
Say the client asks the server for a list of completions, it can decide before the server has had chance to respond that it no longer cares about the answer and send a cancellation - allowing the server to stop computing the answer.
It looks like pygls does not handle these correctly, there was a previous thread on this but we probably need to look into this again.