Sorry if I wasn't clear but that is what I used. I was just saying it was similar to the configuration I was using and I just added the maxThreads=2 like you suggested. Even after that I still have 5 threads. I don't think threading is my issue though and the real problem is in my application somewhere :S
Thanks for your help, Brendon On Jul 1, 2:51 pm, Anand Chitipothu <[email protected]> wrote: > 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 -~----------~----~----~----~------~----~------~--~---
