Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove ActorPath.ToString call from ResolveActorRefWithLocalAddress #5034

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/core/Akka.Remote/RemoteActorRefProvider.cs
Expand Up @@ -489,8 +489,7 @@ public IInternalActorRef ResolveActorRefWithLocalAddress(string path, Address lo
//the actor's local address was already included in the ActorPath
if (HasAddress(actorPath.Address))
{
// HACK: needed to make ActorSelections work
if (actorPath.ToStringWithoutAddress().Equals("/"))
if (actorPath is RootActorPath)
return RootGuardian;
return _local.ResolveActorRef(RootGuardian, actorPath.ElementsWithUid);
}
Expand Down