-
Notifications
You must be signed in to change notification settings - Fork 29.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
Add proxy support to http2
requests in the extension host
#185098
Comments
Discussion: nodejs/help#4189 |
Previously reverted due to #188676 and https://github.com/github/codespaces/issues/14593. Status on these:
|
Some more findings on the change in grpc behavior:
The Codespaces extension worked around this by using When I temporarily set the |
Opened nodejs/node#49860 for Node. |
The system certificate loading V2 also seems to affect the native We conditionally include a polyfill to import fetch, { Headers, Request, Response } from 'node-fetch';
if (!global.fetch) {
global.fetch = fetch;
global.Response = Response;
global.Headers = Headers;
global.Request = Request;
} This stopped working in VS Code 1.82 due to the Node 18 update that made When we checked the insiders build, it was working again, but since #194408 it only works with the "Http › Experimental: System Certificates V2" configuration activated. Does this belong here or should I open a separate issue to track system certificate support for |
@kryops This is the right place, thanks. |
The system certificate support for |
Previously reverted: #189133
The text was updated successfully, but these errors were encountered: