That error is thrown if you try to create actors in a terminated actor
system, probably because you are somehow re-using the original actor system
after it has terminated.
--
Johan
--
>> Read the docs: http://akka.io/docs/
>> Check the FAQ:
>> http://doc.akka.
I am using Spring IOC to inject Beans and created the instance inside
actorSystem.
actorSystem.actorOf(SpringExtProviderInstance.get(actorSystem).props(
"mainActor"), "mainActor");
After Spring Scheduler running, things are good in the first run, but the
second run triggered the above exception