Hello,
I am using Akka as a pub sub system in my project, so far all is going great, but I have one problem,
when calling the following:
this.mediator.tell(new DistributedPubSubMediator.Publish(“akka-demo-topic”, null), getSelf());
The destination(a router) stops receiving messages after the publishing of null body(all future msg sent are deadletters), is it possible to override the mediator supervisorStrategy in order to log the error but not stop the end point from receiving future message’s
p.s. my workaround is to check if msg is null before publishing and I will use it as a last resort, but I would really like akka to deal with it