diff --git a/lib/flame/code_sync.ex b/lib/flame/code_sync.ex index e18bf07..99ae63c 100644 --- a/lib/flame/code_sync.ex +++ b/lib/flame/code_sync.ex @@ -56,7 +56,7 @@ defmodule FLAME.CodeSync do extract_dir: Keyword.get(opts, :extract_dir, {Function, :identity, ["/"]}), start_apps: Keyword.get(opts, :start_apps, true), verbose: Keyword.get(opts, :verbose, false), - compress: Keyword.get(opts, :compress, false), + compress: Keyword.get(opts, :compress, true), chunk_size: Keyword.get(opts, :chunk_size, 64_000) }) end diff --git a/lib/flame/pool.ex b/lib/flame/pool.ex index 80731d3..e276a5b 100644 --- a/lib/flame/pool.ex +++ b/lib/flame/pool.ex @@ -102,6 +102,7 @@ defmodule FLAME.Pool do * `:timeout` - The time to allow functions to execute on a remote node. Defaults to 30 seconds. This value is also used as the default `FLAME.call/3` timeout for the caller. + * `:boot_timeout` - The time to allow for booting and connecting to a remote node. Defaults to 30 seconds.