From bf57d6c55bb07d44277ed2274e68c30fe3cd51ea Mon Sep 17 00:00:00 2001 From: Dario Rexin Date: Fri, 26 Apr 2013 22:36:57 +0200 Subject: [PATCH] fixed instamtiation error of InboxActor in actor.dsl.Inbox --- akka-actor/src/main/scala/akka/actor/dsl/Inbox.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-actor/src/main/scala/akka/actor/dsl/Inbox.scala b/akka-actor/src/main/scala/akka/actor/dsl/Inbox.scala index 604c0eb0d3..463d771dae 100644 --- a/akka-actor/src/main/scala/akka/actor/dsl/Inbox.scala +++ b/akka-actor/src/main/scala/akka/actor/dsl/Inbox.scala @@ -27,7 +27,7 @@ trait Inbox { this: ActorDSL.type ⇒ val DSLInboxQueueSize = config.getInt("inbox-size") val inboxNr = new AtomicInteger - val inboxProps = Props(classOf[InboxActor], DSLInboxQueueSize) + val inboxProps = Props(classOf[InboxActor], ActorDSL, DSLInboxQueueSize) def newReceiver: ActorRef = mkChild(inboxProps, "inbox-" + inboxNr.incrementAndGet) }