Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/flame/code_sync.ex
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,7 @@ defmodule FLAME.CodeSync do
log_verbose("packaged size: #{File.stat!(out_path).size / (1024 * 1024)}mb")
end

# TODO: Change to File.stream!(out_path, code.chunk_size) once we require Elixir v1.16+
File.stream!(out_path, [], code.chunk_size)
end

Expand Down
3 changes: 0 additions & 3 deletions lib/flame/pool.ex
Original file line number Diff line number Diff line change
Expand Up @@ -306,9 +306,6 @@ defmodule FLAME.Pool do
if Keyword.fetch!(place_opts, :link), do: Process.link(child_pid)
{:cancel, {:replace, [child_pid]}, result}

:ignore ->
{:cancel, :ok, :ignore}

{:error, _reason} = result ->
{:cancel, :ok, result}
end
Expand Down
Loading