-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
x/tools/gopls: syntax error in go.mod blocks progress end notification #50885
Comments
Thanks for the report @j-hui This was caused by syntax errors in go.mod.
This should be
In VS Code, I saw gopls sending the progress end notification and the popup immediately going away as soon as I fixed the syntax error. So, wrt progress notification, I think gopls is working as expected. However, there are still usability issues that need improvement.
|
I realize this is a syntax error, but why is gopls reporting a diagnostic error in the progress notification? My understanding is that progress notifications are used to report progress, i.e., whether the LSP server is performing ongoing work. Reporting an error via an incomplete progress notification seems to convey the wrong idea about what the status of the language server. If the intention is to show a popup message, shouldn't this be conveyed through something like the ShowMessage Notification endpoint? |
To be clear, this issue is not about how helpful the diagnostic for the syntax error is, but how the error is reported. |
Sorry if it wasn't clear. |
Even if the workspace cannot load successfully, isn't the task still complete at that point? The way notifications are being sent gives the impression that the LSP server is performing ongoing work, even though it has already stopped (because it cannot recover). The LSP provides other facilities for reporting fatal errors to the user. If gopls insists on sending an error message through the progress notification endpoint, it can also send a message through the work done progress endpoint, using the |
Gopls can't load the workspace but the loading blocks indefinitely, so the workspace load task (gopls's state initialization) isn't complete. BTW, in VSCode, if the server stops without sending work done message, the client library clears it up. |
Thanks! So far I haven't seen any other LSP servers behave this way, but I'm also unsure what is the "correct" behavior here---the LSP progress endpoint specification does not seem to make any mention of what to do if the server encounters an error. I wasn't aware that VSCode's LSP client times out if it doesn't receive subsequent progress notifications. I can implement that in my plugin if that's the expected behavior; but do you know what the timeout is supposed to be? |
Oh, I meant that VSCode cleans up pending progress notification if the LSP connection shuts down (either because the client decides to shut down the connection to restart the server, or because the server shuts down for whatever reasons). The LSP client shouldn't arbitrarily apply timeout. @ttys3 That's actually a good point. If it was during the middle of editing the go.mod file, gopls should resolve and send the progress end notification as soon as the error in go.mod file is addressed. If it used |
This may be a dupe of #46930. |
Tentatively closing as a duplicate, so that we can consolidate investigation of the IWL progress notification on #46930. We can reopen if they turn out not to be dupes. |
This is actually not a dupe. If I'm understanding correctly, this is WAI: the gopls progress bar is (currently) used to hold open a critical error status. It can only be removed by resolving the problem. I suspect that in this case neovim may not be sending gopls go.mod change notifications, meaning that gopls does not reload the workspace. This technique of holding open a hanging progress notification is tricky, and may be problematic. We should look into its ramifications on various LSP clients. |
gopls version
go env
What did you do?
I'm working on a Neovim plugin that exposes the builtin LSP client's progress handler: https://github.com/j-hui/fidget.nvim. Several users have reported issues using it gopls.
In particular, there were two problems:
What did you expect to see?
What did you see instead?
We came across this issue when the long messages triggered an error where we ran into the max length for Lua's format specifier. We're currently fixing that by trucating the string, which stops Neovim from throwin an error, but this does not seem to be a satisfactory way of conveying the error.
Editor and settings
We can reproduce the issue with the following repo: https://github.com/j-hui/gopls-test
Clone that repo down, install nvim version >0.6.0, and then run:
In the bottom right corner:
Notice that:
Fidget's logs can be found at:
I am receiving the following messages:
Notice that task
8674665223082153551
never completes, and reports an error message.Logs
I'm not sure how useful this is for this particular issue:
The text was updated successfully, but these errors were encountered: