Fix for ticket #280 - Tests fail if there is no akka.conf set

This commit is contained in:
Jonas Bonér 2010-06-18 13:30:00 +02:00
parent 306d017e7c
commit e7a7d6ec90

View file

@ -20,7 +20,7 @@ class TransactionAwareWrapperException(val cause: Throwable, val tx: Option[Tran
object TransactionManagement extends TransactionManagement {
import se.scalablesolutions.akka.config.Config._
val TRANSACTION_ENABLED = new AtomicBoolean(config.getBool("akka.stm.service", false))
val TRANSACTION_ENABLED = new AtomicBoolean(config.getBool("akka.stm.service", true))
val FAIR_TRANSACTIONS = config.getBool("akka.stm.fair", true)
val INTERRUPTIBLE = config.getBool("akka.stm.interruptible", true)
val MAX_NR_OF_RETRIES = config.getInt("akka.stm.max-nr-of-retries", 1000)