move RemoteServerStarted message to NettyRemoteTransport, fixes #1771

- also make port=0 (auto) for two remote tests (config&deployer)
- also fix remote-sample conf files to configure “netty” section
This commit is contained in:
Roland 2012-02-02 11:46:52 +01:00
parent d43d41d100
commit d8fa7578e1
6 changed files with 11 additions and 11 deletions

View file

@ -13,9 +13,8 @@ import akka.remote.netty.NettyRemoteTransport
class RemoteConfigSpec extends AkkaSpec(
"""
akka {
actor {
provider = "akka.remote.RemoteActorRefProvider"
}
actor.provider = "akka.remote.RemoteActorRefProvider"
remote.netty.port = 0
}
""") {
@ -43,7 +42,7 @@ class RemoteConfigSpec extends AkkaSpec(
RequireCookie must be(false)
UsePassiveConnections must be(true)
Hostname must not be "" // will be set to the local IP
PortSelector must be(2552)
PortSelector must be(0)
MessageFrameSize must be(1048576)
ConnectionTimeout must be(2 minutes)
Backlog must be(4096)