-
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: cannot resolve import block when a change adds one package but removes the other #34052
Comments
Thank you for filing a gopls issue! Please take a look at the Troubleshooting section of the gopls Wiki page, and make sure that you have provided all of the relevant information here. |
|
I'm not able to reproduce this on master. Can you try |
It works better with |
gopls correctly stops - it can't resolve spew. But then it cannot recover from:
If I restart gopls daemon, it works. |
Is it failing with context canceled errors? In that case, it might be a different issue. |
This is the log:
|
It seems it keeps trying to resolve to spew even after it's removed from the code. |
I manage to get context canceled errors:
|
I can reproduce gopls getting stuck after running organizeImports in the above example. There is a mutex deadlock reminiscent of #33992:
|
@muirrn: Is this on master? Edit: Nevermind, I see the issue. thanks |
Change https://golang.org/cl/193718 mentions this issue: |
This change propagates the file handle through the type-checking process, ensuring that the same handle is used throughout. It also removes the ordering constraint that f.mu needs to be acquired before f.handleMu. To make this more correct, we should associate a cached package only with a FileHandle, but this relies on correct cache invalidation, so that will be addressed in future changes. Updates golang/go#34052 Change-Id: I6645046bfd15c882619a7f01f9b48c838de42a30 Reviewed-on: https://go-review.googlesource.com/c/tools/+/193718 Run-TryBot: Rebecca Stambler <rstambler@golang.org> Reviewed-by: Ian Cottrell <iancottrell@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
@ucirello: Is this still an issue for you with the latest version of |
not anymore - problem fixed. |
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
Step 1: create a file like this:
Make sure it is saved.
Using vscode or some editor, invoke gopls and make sure it has seen the file at least once.
Open the file and replace:
with
What did you expect to see?
I would expect to see the import block resolved with
log
replacingfmt
. That was the behavior with goimports.What did you see instead?
gopls fails - no other operation works.
The text was updated successfully, but these errors were encountered: