Skip to content
This repository has been archived by the owner on Jan 13, 2021. It is now read-only.

Commit

Permalink
fix(disconnectrequest): forgot to send response
Browse files Browse the repository at this point in the history
  • Loading branch information
hoehrmann committed Mar 10, 2019
1 parent ede65de commit bbabf48
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/perlDebug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -342,11 +342,6 @@ export class PerlDebugSession extends LoggingDebugSession {



// protected disconnectRequest(response: DebugProtocol.DisconnectResponse, args: DebugProtocol.DisconnectArguments): void {
// response.success = false;
// this.sendResponse(response);
// }

private async checkSignaling(): Promise<boolean> {

if (!this.adapter.canSignalDebugger) {
Expand Down Expand Up @@ -383,6 +378,7 @@ export class PerlDebugSession extends LoggingDebugSession {

this.adapter.terminateDebugger()
await this.adapter.destroy();
this.sendResponse(response);

}

Expand Down

0 comments on commit bbabf48

Please sign in to comment.