Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Bellow is a row from following build log: https://travis-ci.org/plokhotnyuk/actors/jobs/4088637/#L630

[WARN] [01/11/2013 12:26:04.908] [Thread-47] [akka://system/user/$t] dropping message of typeclass com.github.plokhotnyuk.actors.Message due to lock timeout

Is any ability to configure this timeout or avoid lock at all?

Code of test is here: https://github.com/plokhotnyuk/actors/blob/master/src/test/scala/com/github/plokhotnyuk/actors/AkkaActorSpec.scala

share|improve this question

1 Answer

up vote 1 down vote accepted

This timeout is configurable in akka.actor.unstarted-push-timeout, but if you are creating many top level actors (system.actorOf) you should create the actors a children of another actor instead (context.actorOf).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.