Hi,

I'm trying to send a message to an actor that was instantiated by the 
ClusterSingletonManager but I get the message "from 
Actor[akka://ClusterSystem/deadLetters] to 
Actor[akka://ClusterSystem/user/master] was not delivered"

My test code ..

 ActorSystem system1 = ActorSystem.create(Constants.CLUSTER_ID, 
                  ConfigFactory.parseFile( FileSystems.getDefault()
                    .getPath("src", "test", 
"resources","Master_1.conf").toFile()));
    
    ActorRef master1 = system1.actorOf(ClusterSingletonManager.defaultProps(
            Props.create(Master.class), "master", PoisonPill.getInstance(), 
"test"));
    
     ActorSelection selection = 
system1.actorSelection("akka.tcp://[email protected]:40000/user/master");
    
    selection.tell("hello", ActorRef.noSender());

What am I missing?

Thanks


-- 
>>>>>>>>>>      Read the docs: http://akka.io/docs/
>>>>>>>>>>      Check the FAQ: 
>>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html
>>>>>>>>>>      Search the archives: https://groups.google.com/group/akka-user
--- 
You received this message because you are subscribed to the Google Groups "Akka 
User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.

Reply via email to