Skip to content

Commit

Permalink
remote ActorSelection to remotely deployed routees now works close ak…
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaronontheweb committed May 23, 2018
1 parent c47c870 commit 5ffaea5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/Akka.Remote.Tests/RemotingSpec.cs
Original file line number Diff line number Diff line change
Expand Up @@ -364,14 +364,14 @@ public void Remoting_must_select_actors_across_node_boundaries()
Sys.ActorSelection("/user/looker/child/grandchild/grandgrandchild").Tell(new Identify("idReq9"));
ExpectMsg<ActorIdentity>(i => i.MessageId.Equals("idReq9")).Subject.ShouldBe(grandgrandchild);
//TODO see #1544
Sys.ActorSelection(child.Path / "grandchild/grandgrandchild").Tell(new Identify("idReq10"));
Sys.ActorSelection(child.Path / "grandchild" / "grandgrandchild").Tell(new Identify("idReq10"));
ExpectMsg<ActorIdentity>(i => i.MessageId.Equals("idReq10")).Subject.ShouldBe(grandgrandchild);
Sys.ActorSelection("/user/looker/child/*/grandgrandchild").Tell(new Identify("idReq11"));
ExpectMsg<ActorIdentity>(i => i.MessageId.Equals("idReq11")).Subject.ShouldBe(grandgrandchild);
Sys.ActorSelection("/user/looker/child/*/*").Tell(new Identify("idReq12"));
ExpectMsg<ActorIdentity>(i => i.MessageId.Equals("idReq12")).Subject.ShouldBe(grandgrandchild);
//TODO see #1544
Sys.ActorSelection(child.Path / "*/grandgrandchild").Tell(new Identify("idReq13"));
Sys.ActorSelection(child.Path / "*" / "grandgrandchild").Tell(new Identify("idReq13"));
ExpectMsg<ActorIdentity>(i => i.MessageId.Equals("idReq13")).Subject.ShouldBe(grandgrandchild);

//ActorSelection doesn't support ToSerializationFormat directly
Expand All @@ -390,7 +390,7 @@ public void Remoting_must_select_actors_across_node_boundaries()
child2.Tell(new Identify("idReq15"));
ExpectMsg<ActorIdentity>(i => i.MessageId.Equals("idReq15")).Subject.ShouldBe(child2);
//TODO see #1544
Sys.ActorSelection(child.Path).Tell("idReq16");
Sys.ActorSelection(child.Path).Tell(new Identify("idReq16"));
ExpectMsg<ActorIdentity>(i => i.MessageId.Equals("idReq16")).Subject.ShouldBe(child2);
child.Tell(new Identify("idReq17"));
ExpectMsg<ActorIdentity>(i => i.MessageId.Equals("idReq17")).Subject.ShouldBe(null);
Expand Down

0 comments on commit 5ffaea5

Please sign in to comment.