Owen Bickford
Owen Bickford
Hey all! Getting PortMidi to work on M1 has been daunting. I had almost zero experience modifying Makefiles or working with C code, but I really wanted to get it...
Nice! I switched to your git version and it just works™️. It would be great to see those changes merged upstream.
@thbar I'm not sure what to do with this error: https://github.com/type1fool/loomer/runs/4255188055?check_suite_focus=true#step:7:36 I noticed you're [using MacOS](https://github.com/thbar/ex-portmidi/blob/master/.github/workflows/elixir.yml) for your fork, but I don't see any special portmidi steps aside from `brew...
Thank you, @ecourtial I've changed jobs and I'm out of the PHP ecosystem now. Still, thanks for following up.
Hey gang. I'm here thanks to the [Thinking Elixir](https://thinkingelixir.com/podcast-episodes/028-depviz-and-elixirls-with-jason-axelson/) interview with @axelson. Aloha! I've been annoyed by this issue, too. I started poking around the docs to see if I...
It did occur to me that the file process may be closed automatically. One important detail I left out is that we're also uploading the file to the cloud. So,...
> ...terminate is not invoked on broken links and stuff... Good to know. I'll look into handling those scenarios. These jobs run under a DynamicSupervisor, so maybe part of the...
Recently I had some time to look more closely at the source code for [`Broadway.Topology`](https://github.com/dashbitco/broadway/blob/main/lib/broadway/topology.ex) & [`Broadway.Topology.Terminator`](https://github.com/dashbitco/broadway/blob/main/lib/broadway/topology/terminator.ex). I think there's a case to be made for adding `consumers` to the...
If there were a terminate callback, I'd probably put the consumer pids in the pipeline context, then drain them when the callback is invoked. Making them part of topology is...
@whatyouhide Thank you for following up! If the producer can broadcast a message to the job pipeline when it's out of messages, the pipeline could trigger its terminate callback. My...