mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-25 12:47:14 +00:00
A user reported that their proxy ZScaller has issues with Electron's fetch. More research needs to be done to understand why this is not playing nice wholistically... ... but, to unblock GitHub scenarios like Copilot, we add this setting to change the implementation of fetch used. At some point, we need to have http.useElectronFetch setting be enabled by default and when that happens, this setting can be removed in favor of that. cc @chrmarti @alexdima
8 lines
938 B
JSON
8 lines
938 B
JSON
{
|
|
"displayName": "GitHub Authentication",
|
|
"description": "GitHub Authentication Provider",
|
|
"config.github-enterprise.title": "GHE.com & GitHub Enterprise Server Authentication",
|
|
"config.github-enterprise.uri.description": "The URI for your GHE.com or GitHub Enterprise Server instance.\n\nExamples:\n* GHE.com: `https://octocat.ghe.com`\n* GitHub Enterprise Server: `https://github.octocat.com`\n\n> **Note:** This should _not_ be set to a GitHub.com URI. If your account exists on GitHub.com or is a GitHub Enterprise Managed User, you do not need any additional configuration and can simply log in to GitHub.",
|
|
"config.github-authentication.useElectronFetch.description": "When true, uses Electron's built-in fetch function for HTTP requests. When false, uses the Node.js global fetch function. This setting only applies when running in the Electron environment. **Note:** A restart is required for this setting to take effect."
|
|
}
|