Re: [akka-user] Error from non-actor execution context disappears

2015-06-15 Thread Viktor Klang
Hi Jonas, Alla is not involved in that execution path. Use Akka Dispatcher for the EC to the future iso the global pool. -- Cheers, √ On 15 Jun 2015 16:55, "Jonas K" wrote: > I have an actor that calls code that returns a Future using an > ExecutionContext > different from the one used by the

[akka-user] Error from non-actor execution context disappears

2015-06-15 Thread Jonas K
I have an actor that calls code that returns a Future using an ExecutionContext different from the one used by the actor, as shown below. class BadActor extends Actor with ActorLogging { def receive = { case BadActor.Initialize => log.info("Received Initialize") SomethingAs