On Wed, Aug 26, 2009 at 3:45 PM, afrotypa <[email protected]> wrote:

>
> I keep getting messages similar to these
> "14:33:03,987 INFO  [paste.httpserver.ThreadPool] kill_hung_threads
> status: 50 threads (0 working, 50 idle, 0 starting) ave time N/A, max
> time 0.00sec, killed 0 workers"
>
> At which point my app hangs and needs restarting.
>
>
>
When you say it "hangs", what specifically do you mean? When you try to
access a page after seeing this in the logs, what response do you get back?

The message you're seeing is a logging message from the paste http server.
After X number of requests (the default is 100), the server will check all
the running threads and see if any of them have been running "too long". It
would consider these still-running threads as hung, and you would've seen
additional logs for their killing. The logs you've shown, however, shows the
typical result: all your threads are idle (waiting for a request to come
along for them to work on), and no threads needed to be killed.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to