Skip to content

Commit

Permalink
delay EH reattach; fixes #55955
Browse files Browse the repository at this point in the history
  • Loading branch information
weinand committed Aug 7, 2018
1 parent a9381f5 commit d41a064
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,9 @@ export class DebugService implements debug.IDebugService {
} else {
const root = raw.root;
raw.disconnect().done(undefined, errors.onUnexpectedError);
this.doCreateSession(root, { resolved: session.configuration, unresolved: session.unresolvedConfiguration }, session.getId());
setTimeout(_ => {
this.doCreateSession(root, { resolved: session.configuration, unresolved: session.unresolvedConfiguration }, session.getId());
}, 50);
}

return;
Expand Down

0 comments on commit d41a064

Please sign in to comment.