Merge pull request #88790 from dlech/fix-fetch-threads-after-restart

Fix threads not fetched after restarting debug adapter
This commit is contained in:
Isidor Nikolic 2020-01-17 11:07:07 +01:00 committed by GitHub
commit 19935de930
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -904,6 +904,7 @@ export class DebugSession implements IDebugSession {
this.raw.dispose();
}
this.raw = undefined;
this.fetchThreadsScheduler = undefined;
this.model.clearThreads(this.getId(), true);
this._onDidChangeState.fire();
}