At 11:54 PM 2/8/2007 -0800, Titus Brown wrote:
>Hi folks,
>
>I just ran into an interesting sanity check problem, and I was hoping
>you could all cross-check *my* sanity.
>
>Should the WSGI environ variables 'wsgi.multithread' and
>'wsgi.multiprocess' be set to 'True' in
>wsgiref.simple_server.WSGIServer?
>
>They are, currently, but I see no indication in WSGIServer
>(inheriting from BaseHTTPServer.HTTPServer) of multithreadedness
>or multiprocessedness.

Yeah, multiprocess should probably be set false there, and 
multithreadedness should depend on whether the ThreadingTCPServer or 
whatever it's called is mixed in.  (HTTPServer does in fact support this, 
but it's not tested in a WSGI context as far as I know.)

_______________________________________________
Web-SIG mailing list
Web-SIG@python.org
Web SIG: http://www.python.org/sigs/web-sig
Unsubscribe: 
http://mail.python.org/mailman/options/web-sig/archive%40mail-archive.com

Reply via email to