Merge pull request #1320 from drewhk/wip-3156-remotingspec-test-interference-drewhk

Fixed wrongly configured retry-gate to avoid test-interference
This commit is contained in:
drewhk 2013-04-10 04:43:29 -07:00
commit ac9376d8dd
5 changed files with 6 additions and 6 deletions

View file

@ -80,7 +80,7 @@ object RemotingSpec {
remote {
transport = "akka.remote.Remoting"
retry-latch-closed-for = 1 s
retry-gate-closed-for = 1 s
log-remote-lifecycle-events = on
enabled-transports = [
@ -212,7 +212,7 @@ class RemotingSpec extends AkkaSpec(RemotingSpec.cfg) with ImplicitSender with D
}
"send error message for wrong address" in {
filterEvents(EventFilter.error(start = "Association", occurrences = 6),
filterEvents(EventFilter.error(start = "AssociationError", occurrences = 1),
EventFilter.warning(pattern = ".*dead letter.*echo.*", occurrences = 1)) {
system.actorFor("akka.test://nonexistingsystem@localhost:12346/user/echo") ! "ping"
}