Start standalone runtimes as hidden nodes (#172)

This commit is contained in:
Jonatan Kłosko 2021-04-14 11:23:05 +02:00 committed by GitHub
parent 5f3230f7aa
commit 252642f601
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -52,7 +52,9 @@ defmodule Livebook.Runtime.StandaloneInit do
# Minimize shedulers busy wait threshold,
# so that they go to sleep immediately after evaluation.
# Enable ANSI escape codes as we handle them with HTML.
"+sbwt none +sbwtdcpu none +sbwtdio none -elixir ansi_enabled true"
"+sbwt none +sbwtdcpu none +sbwtdio none -elixir ansi_enabled true",
# Make the node hidden, so it doesn't automatically join the cluster
"--hidden"
]
end