Ben Smith
Ben Smith
The `handle_call/3` function which processes the `{:swarm, :begin_handoff}` message is implemented in the [swarm registry module](https://github.com/commanded/commanded-swarm-registry/blob/f1561fc5dfa83eea617f24e626ec6871bd02073d/lib/commanded/registration/swarm_registry.ex#L76). I don't know why the error indicates it was not provided. Have you tried...
@norpan I don’t use distributed Erlang so don’t have much experience with running it. I use the [feature/distributed](https://github.com/slashdotdash/conduit/tree/feature/distributed) branch of the Conduit sample repo to test with multiple nodes by...
It’s worth noting that you can safely run the same event handler on multiple nodes and are guaranteed that only one instance will actually process events. Even using Commanded’s local...
For strong command dispatch consistency you need to [configure Commanded to use the Phoenix PubSub](https://hexdocs.pm/commanded/Commanded.PubSub.PhoenixPubSub.html) adapter. In a distributed Erlang setup you can use PG2 via the `Phoenix.PubSub.PG2` adapter. With...
The auditing middleware needs to be the first middleware defined in your router to ensure it gets executed before any other middleware can halt command dispatch. Probably worth doing either...
@hpopp Thanks for the rapid fix and release. I will upgrade to v0.4.4 today ready for deployment.