From 009821cdb34f49f171e159ec0e82a39e87e6e0fd Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Tue, 23 Jan 2024 00:08:56 +0100 Subject: [PATCH] Fix information about RESTARTABLE option --- images/base-notebook/start-notebook.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/base-notebook/start-notebook.py b/images/base-notebook/start-notebook.py index b46217e277..973da5aad1 100755 --- a/images/base-notebook/start-notebook.py +++ b/images/base-notebook/start-notebook.py @@ -17,7 +17,7 @@ # Entrypoint is start.sh command = [] -# If we want to survive restarts, tell that to start.sh +# If we want to survive restarts, launch the command using `run-one-constantly` if os.environ.get("RESTARTABLE") == "yes": command.append("run-one-constantly")