fixed misc bugs and completed first iteration of transactions

This commit is contained in:
Jonas Boner 2009-03-26 20:22:49 +01:00
parent 6cb38f6ce9
commit 123fa5bd50
8 changed files with 173 additions and 98 deletions

View file

@ -77,7 +77,7 @@ object Helpers extends Logging {
def receiveWithin(timeout: Int): Option[A] = value match {
case None => ch.receiveWithin(timeout) {
case TIMEOUT =>
log.debug("Future timed out while waiting for actor: {}", a)
log.debug("Future timed out while waiting for actor [%s]", a)
None
case a =>
value = Some(a)