Uncommented failing leader election tests

This commit is contained in:
Jonas Bonér 2011-06-23 16:02:35 +02:00
parent 38e50b77a5
commit 56db84f0a1
2 changed files with 17 additions and 5 deletions

View file

@ -25,7 +25,7 @@ import akka.AkkaException
object Scheduler {
import Actor._
case class SchedulerException(msg: String, e: Throwable) extends RuntimeException(msg, e)
case class SchedulerException(msg: String, e: Throwable) extends AkkaException(msg, e)
@volatile
private var service = Executors.newSingleThreadScheduledExecutor(SchedulerThreadFactory)