You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 16, 2020. It is now read-only.
I'm trying to enqueue the same data structure to 2 different workers and it doesn't appear to work, apparently enqueue_to returns something different than what receives when everything works as expected.
I solved by using Enum.map, but I don't really like it:
https://elixirforum.com/t/piping-toniq-jobs/2794/4
I'm trying to enqueue the same data structure to 2 different workers and it doesn't appear to work, apparently enqueue_to returns something different than what receives when everything works as expected.
I solved by using Enum.map, but I don't really like it:
Enum.map([Service.Macaw.CreationWorker, Service.Gannet.CreationWorker],
fn(worker) -> Toniq.enqueue(worker, service) end)
Is this how it's supposed to work?
The text was updated successfully, but these errors were encountered: