Skip to content

Commit 5084ec8

Browse files
authored
Merge pull request #1350 from microsoft/fix/restart-warnings
fix: extraneous warnings when restarting debugging
2 parents 2240e07 + 589de99 commit 5084ec8

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ This changelog records changes to stable releases since 1.50.2. "TBA" changes he
55
## Nightly (only)
66

77
- feat: make Deno easier to configure
8+
- fix: extraneous warnings when restarting debugging ([vscode#156432](https://github.com/microsoft/vscode/issues/156432))
89

910
## v1.70 (July 2022)
1011

src/targets/node/killTree.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ export function killTree(
2727
try {
2828
execSync(
2929
`${TASK_KILL} ${behavior === KillBehavior.Forceful ? '/F' : ''} /T /PID ${processId}`,
30+
{ stdio: 'pipe' },
3031
);
3132
return true;
3233
} catch (err) {

0 commit comments

Comments
 (0)