-
Notifications
You must be signed in to change notification settings - Fork 1
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
VSCode 1.82.0 breaks VsCoq 0.3.38 #52
Comments
I also see this problem after updating to VS Code 1.82.0 I am not a big fan of your solution to the issue. |
Yeah, I had a feeling my solution was suboptimal. |
With the 0.3.9 release I consider this solved. |
Specifically the update to Node.js 18.15.0 breaks the server code. Here is what I've discovered:
Here is a log from 1.81.1:
And here is one from 1.82.0:
As you might notice, the IP address of the server is different,
:
instead of127.0.0.1
.I made various changes trying to isolate the problem.
127.0.0.1
in setupCoqTopReadAndWritePorts wasn't enough, ascoqtop
wasn't able to connect to the server.host
fromstartListening
, fixed that issue, but the address would be reported as::
, whichcoqtop
doesn't want to accept.Doing both fixed the issue, ultimately landing at the following diff:
I can submit a pull request if the above is good, but I would like feedback since it feels kinda ugly to hard code the address.
The text was updated successfully, but these errors were encountered: