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 fc81fc3 commit 070d131Copy full SHA for 070d131
src/node/entry.ts
@@ -17,7 +17,8 @@ async function entry(): Promise<void> {
17
if (isChild(wrapper)) {
18
const args = await wrapper.handshake()
19
wrapper.preventExit()
20
- await runCodeServer(args)
+ const server = await runCodeServer(args)
21
+ wrapper.onDispose(() => server.dispose())
22
return
23
}
24
0 commit comments