Making so that if the given address to a LocalActorRef is null or the empty string, it should use the toString of the uuid

This commit is contained in:
Viktor Klang 2011-10-13 16:36:47 +02:00
parent 54b70b1017
commit c5ed2a8f21
2 changed files with 7 additions and 2 deletions

View file

@ -46,7 +46,7 @@ object Remote extends RemoteService {
private[remote] lazy val remoteDaemon =
new LocalActorRef(
props = Props(new RemoteDaemon).withDispatcher(new PinnedDispatcher()).withSupervisor(remoteDaemonSupervisor),
address = Remote.remoteDaemonServiceName,
givenAddress = Remote.remoteDaemonServiceName,
systemService = true)
private[remote] lazy val remoteClientLifeCycleHandler = actorOf(Props(new Actor {