Skip to content

Instantly share code, notes, and snippets.

@ConnorRigby
Created April 2, 2020 15:02
Show Gist options
  • Save ConnorRigby/a857829fa6b2d04f53069d89777b70b5 to your computer and use it in GitHub Desktop.
Save ConnorRigby/a857829fa6b2d04f53069d89777b70b5 to your computer and use it in GitHub Desktop.
def worker_spec(%kind{local_id: id, monitor: false} = asset) do
%{
id: id,
start: {Task, :start_link, [fn() -> IO.puts "Not starting asset worker: #{kind}.#{id}" end]},
restart: :transient
}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment