On Jan 18, 11:21 pm, Anthony <[email protected]> wrote: > Am I missing something?
Yes. You're probably running web2py with the default number of threads (30 I think?). Your 2nd browser window's cookie is unlikely to get associated to the same thread. I have lots of users and when one thread takes a long time, some users can keep accessing controller functions and some can't. Once the long- running controller finishes, everyone can access stuff again. If you limit the number of threads to 2 and run several browser windows you'll see that even if one thread is free some of your windows won't use the free one and some will.

