2009/7/1 brendon <[email protected]>:
>
> Thanks Amand. I did as you suggested I was already using the flups and
> wsgi like this:
> if __name__ == "__main": flups.WSGIServer(web.application(urls, globals
> ()).wsgifunc(), multiplexed=False).run()
> I tried with maxThreads = 2 and still no luck.
That solution I gave was to use when your using:
if __name__ == "__main__":
app.run()
If you want to use flup directly, try:
if __name__ == "__main__":
flups.WSGIServer(web.application(urls, globals()).wsgifunc(),
multiplexed=False, maxThreads=2).run()
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"web.py" 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/webpy?hl=en
-~----------~----~----~----~------~----~------~--~---