-
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: stop logging context cancellation errors #34103
Comments
We're also seeing these errors as part of our hover tests. So whilst they might be legitimate errors, is it also possible that we're spuriously logging non-error events as errors? |
Hmm, now we're seeing it as part of our "go to def" tests. The call to
It's unclear whether the other "errors" were in fact errors, or whether the user would have noticed. But in this case the user would definitely have noticed: the call to |
I occasionally see this myself, but never reproducibly. I haven't been able to dig into it, but I have a couple ideas of what might cause this.
In general context.Canceled shouldn't be logged as an error since it is expected, but given our track record for handling cancelation properly, we should probably leave the logs in for now. |
Change https://golang.org/cl/193480 mentions this issue: |
There are issues with contexts being propagated through the calls to type-checking, and I think that a lot of these were related to us using the importer's context. Instead, we should propagate the context from the store as much as possible - only using the importer's context when absolutely necessary (in the call to Import). This change propagates the correct context where possible. Updates golang/go#34103 Change-Id: I4bdc37d014ee1f775b720c9e7ad8abffffcf6ba3 Reviewed-on: https://go-review.googlesource.com/c/tools/+/193480 Run-TryBot: Rebecca Stambler <rstambler@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Cottrell <iancottrell@google.com>
I can fairly reliably cause it to happen by repeatedly running the
Understood. At the moment we're holding off upgrading |
I don't think I would feel comfortable tagging a new version (and in the same vein, having |
Just tried against 2a03e9e (merged result of https://go-review.googlesource.com/c/tools/+/193480/) and got a failure. Also had a ~15% failure rate on CI.
|
Following a couple of conversations with @muirrn and @stamblerre I've concluded I'm conflating two things here.
I'm going to leave this issue for category 1. These spurious "errors" appear to manifest when changes to the same file happen in quick succession. The error is apparently reported because the attempt to compute diagnostics for the first change is cancelled by the second change. This is not an error. I'll create an issue for real errors/failures that fall into category 2 when I have more details. If we can solve this issue (i.e. the noise from "errors that are not errors") we can turn on more aggressive assertions about the number of errors that are reported to the LSP client. |
In 3d166ac we fixed the fact that we had false-positive checks on the number of errors being reported by gopls. However, fixing this uncovered golang/go#34103. So for now, disable those errlogmatch-based checks, pending a fix on the "noise" from gopls of errors that are not actually errors.
In 3d166ac we fixed the fact that we had false-positive checks on the number of errors being reported by gopls. However, fixing this uncovered golang/go#34103. So for now, disable those errlogmatch-based checks, pending a fix on the "noise" from gopls of errors that are not actually errors.
@myitcv: Is this still an issue for you? We've added more handling to ensure that context cancellations aren't logged as errors. |
Yes we're still seeing an issue here. In the as-yet-unmerged govim/govim#661 we have turned our assertions that there should (in most of our test cases) be no errors/warnings at the end of the test back on. And we have test failures across the board, i.e. the assertions fail. Per govim/govim@afa4918, this uses Some of the errors/warnings we see logged are:
All of the
|
Thanks for following up. These logged errors are probably the result of |
Hi there, I just updated to latest gopls master and am getting these errors when opening a file in neovim (if it matters, I'm using neovim's built-in lsp client):
This wasn't happening with my previous gopls install (master from a week or so ago). |
@sbromberger: My guess is that the errors you are seeing are related to #36463. I will hopefully have a fix for that issue in the next few days. In the meantime, I'd recommend sticking with the version of |
@myitcv: These errors should be handled correctly now, as of https://golang.org/cl/214581. |
The only errors we're now seeing (as of 473961e) are:
|
Change https://golang.org/cl/215019 mentions this issue: |
Thanks - one more log statement to clean up then. |
I've just done a test against 0cba7a3 with partial revert of CL 214586 applied on top, in the form of CL 215239, and we're seeing the following error log messages:
Figured I'd just re-open this issue because it's basically the same theme as above, albeit it not context cancellation this time.
|
This looks like a legitimate error from |
No, it's just showing up in a PR where we cause tests to fail if we see error/warning log messages when they're not expected: govim/govim#661 For example, two failures in this test run:
Log files that show errors are:
|
Hm, well this does seem to be a legitimate error coming from |
Ok, but in this case we are not expecting any calls to |
Sorry, yes I agree that the error should not be happening. But I don't think that this falls under the issue, since this was about our sporadic logging of useless context cancellation errors. This sounds like a separate issue entirely to me. |
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?
The symptoms look similar to #33647. However, whereas before I could reproduce this reliably, now it happens much more sporadically.
In
govim
we handle changes to (generated) files not loaded in the editing change via a file watcher (whilst we await #31553)The test failures we are seeing manifest with the following errors on
gopls
'sstderr
:These errors then get reported via the
LogMessage
callback.https://go-review.googlesource.com/c/tools/+/192719 improved this situation, however following that CL we still see this ~10% of the time.
Unfortunately we haven't yet been able to capture a
gopls
log for this, hence here is the log of calls fromgovim
's perspective:https://gist.github.com/myitcv/6a5550365272416fb4d8673ff7fa8460
What did you expect to see?
No errors.
What did you see instead?
The above errors.
cc @stamblerre @ianthehat @muirrn
FYI @leitzler
The text was updated successfully, but these errors were encountered: