Akka.net remoting over Docker containers: client randomly fails to connect to host
问题 There is a simple host with a TestActor that only writes a string it receives to the console: using (var actorSystem = ActorSystem.Create("host", HoconLoader.FromFile("config.hocon"))) { var testActor = actorSystem.ActorOf(Props.Create<TestActor>(), "TestActor"); Console.WriteLine($"Waiting for requests..."); while (true) { Task.Delay(1000).Wait(); } } On the other side there is a simple client that selects the remote actor and passes a TestMessage to it, then waits on an ask without a