Terminate zeromq context after actors have terminated. See #2838

This commit is contained in:
Björn Antonsson 2013-01-18 15:00:19 +01:00
parent cd9fae81e5
commit 8f29022ef5

View file

@ -99,6 +99,8 @@ class ConcurrentSocketActorSpec extends AkkaSpec {
system stop requester
system stop replier
replierProbe.expectMsg(Closed)
awaitCond(requester.isTerminated)
awaitCond(replier.isTerminated)
context.term
}
}
@ -120,6 +122,8 @@ class ConcurrentSocketActorSpec extends AkkaSpec {
system stop pusher
system stop puller
pullerProbe.expectMsg(Closed)
awaitCond(pusher.isTerminated)
awaitCond(puller.isTerminated)
context.term
}
}