Created
April 2, 2020 15:02
-
-
Save ConnorRigby/a857829fa6b2d04f53069d89777b70b5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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