Skip to content

Commit

Permalink
Don't load certificates in windows for now
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanp413 committed Jul 17, 2024
1 parent 93b11e3 commit 2fba1e6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/local-ssh/proxy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,11 @@ function getFailureCode(err: any) {
}

function createPatchedModules(logService: ILogService) {
if (process.platform === 'win32') {
// Ignore windows for now as it requires a native binary
return;
}

const params: ProxyAgentParams = {
resolveProxy: async () => undefined,
getProxyURL: () => undefined,
Expand Down

0 comments on commit 2fba1e6

Please sign in to comment.