Skip to content

Commit

Permalink
Enable compression by default
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Sep 6, 2024
1 parent 0d55f3e commit c096b55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/flame/code_sync.ex
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions lib/flame/pool.ex
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit c096b55

Please sign in to comment.