From 69f1c2ed58b094ee524a80c808ae9e1157a6e681 Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Sun, 21 Mar 2021 14:16:23 -0700 Subject: [PATCH] Remove no longer correct comment --- backend/api.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/backend/api.js b/backend/api.js index 5afeaf2..1f06812 100644 --- a/backend/api.js +++ b/backend/api.js @@ -437,11 +437,6 @@ export class Session { this.log(`Tearing down session`); this.tearingDown = true; if (this.container) { - // SIGTERM should be sufficient as the command running in the - // foreground is just 'tail -f /dev/null' which won't try to - // block signals. Killing the foreground process (i.e. pid1) - // should cause the Docker runtime to bring everything else - // down in flames. this.container.proc.stdin.end(); } allSessions.delete(this);