Merge pull request #1079 from akka/wip-2954-transport-startup-timeout-patriknw

Increase remoting startup/shutdown timeouts, see #2954
This commit is contained in:
Björn Antonsson 2013-02-01 04:48:00 -08:00
commit 6440e385f1
2 changed files with 4 additions and 4 deletions

View file

@ -60,13 +60,13 @@ akka {
# Timeout after which the startup of the remoting subsystem is considered to be failed.
# Increase this value if your transport drivers (see the enabled-transports section)
# need longer time to be loaded.
startup-timeout = 5 s
startup-timeout = 10 s
# Timout after which the graceful shutdown of the remoting subsystem is considered to be failed.
# After the timeout the remoting system is forcefully shut down.
# Increase this value if your transport drivers (see the enabled-transports section)
# need longer time to stop properly.
shutdown-timeout = 5 s
shutdown-timeout = 10 s
# Before shutting down the drivers, the remoting subsystem attempts to flush all pending
# writes. This setting controls the maximum time the remoting is willing to wait before

View file

@ -25,8 +25,8 @@ class RemoteConfigSpec extends AkkaSpec(
val settings = RARP(system).provider.remoteSettings
import settings._
StartupTimeout must be === Timeout(5.seconds)
ShutdownTimeout must be === Timeout(5.seconds)
StartupTimeout must be === Timeout(10.seconds)
ShutdownTimeout must be === Timeout(10.seconds)
FlushWait must be === 2.seconds
UsePassiveConnections must be(true)
UntrustedMode must be(false)