x/tools/gopls: workspace loading notifications can get stuck #71967
Labels
BugReport
Issues describing a possible bug in the Go implementation.
gopls/metadata
Issues related to metadata loading in gopls
gopls
Issues related to the Go language server, gopls.
Tools
This label describes issues relating to any tools in the x/tools repository.
Milestone
Go version
go version go1.23.2 darwin/arm64
Output of
go env
in your module/workspace:What did you do?
Recently Zed stopped sending out any
workspaceFolders
in it's Initialize request, instead opting to fill them out when a project root is discovered. We still fill outrootUri
.What did you see happen?
Our Preview users noticed that there's now a stale notification for "Setting up workspace: Loading packages...". I dug a bit into gopls sources and it looks like it fills out workspace folders with rootUri when there are no workspace folders in initialize request: https://github.com/golang/tools/blob/5dc980c6debffbe1b319cf554f28eaf100b9fc94/gopls/internal/server/general.go#L98
I think the problem here might be that later on we send out a didChangeWorkspaceFolders notification with that same folder, which might lead to the progress token not being cancelled.
When rootUri is not present in initialization params the issue goes away.
What did you expect to see?
I expected second workspace scan to not be started if there's already (implictily registered) workspace folder of the same path.
The text was updated successfully, but these errors were encountered: