We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc8dee0 commit a58eb54Copy full SHA for a58eb54
src/phpDebug.ts
@@ -333,6 +333,7 @@ class PhpDebugSession extends vscode.DebugSession {
333
} else {
334
connection.sendRunCommand().then(response => this._checkStatus(response));
335
}
336
+ this._waitingConnections.delete(connection);
337
338
this.sendResponse(response);
339
@@ -525,6 +526,9 @@ class PhpDebugSession extends vscode.DebugSession {
525
526
.then(response => connection.close())
527
.then(() => {
528
this._connections.delete(id);
529
+ if (this._waitingConnections.has(connection)) {
530
531
+ }
532
})
533
.catch(() => {})
534
)).then(() => {
0 commit comments