I am using Akka Cluster and I have an interesting issue. I have one actor Actor1 on node A (akka.tcp://as@127.0.0.1:2554). This actor finds another actor on another node using
val actor2sel = context.actorSelection(RootActorPath(m.address) / "user" / "actor2")
where m
is a member of the cluster. actor2sel is
ActorSelection[Anchor(akka.tcp://as@127.0.0.1:2553/), Path(/user/actor2)]
Later, Actor1 forwards a message to Actor2, which correctly gets the message, but the sender is deadLetters:
akka.tcp://as@127.0.0.1:2554/deadLetters
Do you have any pointer on what the cause might be?