You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
gopherbot
added
Tools
This label describes issues relating to any tools in the x/tools repository.
gopls
Issues related to the Go language server, gopls.
labels
Sep 6, 2022
A lot of these goroutines are expected (waiting for connections to be closed or new incoming connections to accept).
One that sticks out as not expected is golang.org/x/tools/internal/jsonrpc2.(*conn).Call, which is hanging during initialization. There are a number of goroutines trying to read off a connection, and I don't see obvious deadlocks in server code. This may be a bug in jsonrpc2. I also wonder if it could be a net bug?
I'll note that unfortunately this is unlikely to get investigated soon, as it appears to be a lower priority than other issues (including other test flakes).
Thanks @mengzhuo, that's good to know. In this case the connection is over localhost, so I don't think it would be affected by the firewall (and this is a rare flake).
Looks like a deadlock to me because nearly everything was stuck for 9 minutes.
(CC @adonovan @findleyr)
The text was updated successfully, but these errors were encountered: