Report terminal crash
This commit is contained in:
parent
559efbdf8f
commit
08225b30eb
|
@ -350,6 +350,15 @@ export class Session {
|
||||||
this.send({ event: "terminalOutput", output: data });
|
this.send({ event: "terminalOutput", output: data });
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
this.term.pty.on("exit", (code, signal) => {
|
||||||
|
if (term.live) {
|
||||||
|
this.send({
|
||||||
|
event: "serviceFailed",
|
||||||
|
service: "terminal",
|
||||||
|
error: `Exited with status ${signal || code}`,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
this.log(`Error while running user code`);
|
this.log(`Error while running user code`);
|
||||||
console.log(err);
|
console.log(err);
|
||||||
|
|
Loading…
Reference in New Issue