Skip to content

Commit 68ecc09

Browse files
Merge pull request intersystems-community#1137 from gjsjohnmurray/fix-1136
Debugging's websocket should ignore self-signed cert error when `http.proxyStrictSSL` is `false`
2 parents 5da0760 + 789d373 commit 68ecc09

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/debug/debugSession.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ export class ObjectScriptDebugSession extends LoggingDebugSession {
148148
this._url = api.xdebugUrl();
149149

150150
const socket = new WebSocket(this._url, {
151+
rejectUnauthorized: vscode.workspace.getConfiguration("http").get("proxyStrictSSL"),
151152
headers: {
152153
cookie: this.cookies,
153154
},

0 commit comments

Comments
 (0)