Workaround for tests relying on accurate throttling

- increased default capacity of token bucket in testconductor (Player)
This commit is contained in:
Endre Sándor Varga 2012-12-19 15:47:30 +01:00
parent 37877fa3ed
commit 66ccefe00e
4 changed files with 6 additions and 6 deletions

View file

@ -469,7 +469,7 @@ private[remote] class EndpointManager(conf: Config, log: LoggingAdapter) extends
private def forwardToDeadLetters(s: Send): Unit = {
val sender = s.senderOption match {
case Some(sender) sender
case None Actor.noSender
case None extendedSystem.deadLetters
}
extendedSystem.deadLetters.tell(s.message, sender)
}