mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-01-22 23:08:50 +08:00
79e5c432b3
* Isolate evaluation in separate node for each session * Start new remote upon first evaluation and handle nodedown * Add UI for managing evaluation node, improve naming and structure * Show runtime initialization errors and some fixes * Improve standalone node initialization * Correctly handle multiple sessions connecting to the same node * Fix session tests concerning evaluation * Documentation and some refactoring * Various improvements * Configure schedulers to get to sleep immediately after evaluation * Move EvaluatorSpervisor into the Remote namespace * Fix evaluators cleanup * Add tests * Improve flash messages * Introduce remote genserver taking care of cleanup * Redefine the Runtime protocol to serve as an interface for evaluation * Cleanup operations * Use reference for communication with a standalone node * Use shortnames for distribution by default * Update node configuration and make sure epmd is running * Rename Remote to ErlDist
14 lines
339 B
Elixir
14 lines
339 B
Elixir
defmodule LiveBook.Config do
|
|
@moduledoc false
|
|
|
|
@doc """
|
|
Checks if the distribution mode is configured to use short names.
|
|
"""
|
|
@spec shortnames?() :: boolean()
|
|
def shortnames?() do
|
|
case Application.fetch_env!(:live_book, :node_name) do
|
|
{:shortnames, _name} -> true
|
|
{:longnames, _name} -> false
|
|
end
|
|
end
|
|
end
|