2013-09-03T15:27:01.414845+00:00 app[web.4]: 15:27:01 WARN [akka://s3cret/user/IO-HTTP/listener-0/51053] - Configured registration timeout of 1 second expired, stopping
We use spray version 1.1-M8.
On Tue, Sep 3, 2013 at 7:01 PM, Stig Brautaset <sbrau...@gmail.com> wrote:2013-09-03T15:27:01.414845+00:00 app[web.4]: 15:27:01 WARN [akka://s3cret/user/IO-HTTP/listener-0/51053] - Configured registration timeout of 1 second expired, stopping
We use spray version 1.1-M8.Are the servers loaded? The warning indicates that after a connection attempt was made your HttpService didn't respond in 1 second. This is not necessarily a spray issue but in many cases this is a sign that you may suffer from thread starvation. Are you doing blocking calls in your HttpService or in any other actor on the same akka dispatcher as your HttpService?
You can try setting the `spray.can.server.registration-timeout` setting higher, but that is probably more a cure for the symptom than a real solution.
You can try setting the `spray.can.server.registration-timeout` setting higher, but that is probably more a cure for the symptom than a real solution.Yes. I tried that, but I just ran into timeouts elsewhere in akka.io.