Skip to content

Commit

Permalink
Merge pull request #1091 from rogeralsing/enable-remotewatch-from-daemon
Browse files Browse the repository at this point in the history
Enable remote watching from RemoteSystemDaemon
  • Loading branch information
Aaronontheweb committed Jun 23, 2015
2 parents d85625e + ed0350a commit 62b41b7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion src/core/Akka.Remote/RemoteSystemDaemon.cs
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ private void HandleDaemonMsgCreate(DaemonMsgCreate message)
if (AddChildParentNeedsWatch(parent, actor))
{
//TODO: figure out why current transport is not set when this message is sent
//parent.Tell(new Watch(parent, this),this);
parent.Tell(new Watch(parent, this),this);
}
});
if (isTerminating)
Expand Down
5 changes: 0 additions & 5 deletions src/examples/RemoteDeploy/System1/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,6 @@ private static void Main(string[] args)
remote.Tell("Remote message 3", reply);
remote.Tell("Remote message 4", reply);
remote.Tell("Remote message 5", reply);
Console.ReadLine();
for (var i = 0; i < 10000; i++)
{
remote.Tell(i);
}

Console.ReadLine();
}
Expand Down

0 comments on commit 62b41b7

Please sign in to comment.