2009/2/23 Dalius Dobravolskas <[email protected]>:
>
> On Sun, Feb 22, 2009 at 11:20 PM, Graham Dumpleton
> <[email protected]> wrote:
>> Try patch or just use version from 2.X branch out of subversion:
>>
>>  http://code.google.com/p/modwsgi/wiki/ChangesInVersion0204
> I have tried to use this version. SIGTERM still does not work. Only SIGKILL.

While I think of something more intelligent to say, in your code you have:

  page = """ ....."""

  return page

Thus, returning string from WSGI application. This is very
inefficient. Result should be an iterable, which string qualifies as,
but end result will be that single character is flush at a time. Use
instead:

  return [page]

Graham

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"modwsgi" 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/modwsgi?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to