> > "spiffytech", how is your process/threads apache and wsgi conf? >
My apache configuration is pretty straightforward: WSGIScriptAlias / "/home/spiffytech/apache/mobileblur.spiffyte.ch/docroot/wsgihandler.py" I'm using the stock web2py wsgihandler.py. And I'm using the prefork MPM: <IfModule prefork.c> StartServers 8 MinSpareServers 5 MaxSpareServers 20 ServerLimit 256 MaxClients 256 MaxRequestsPerChild 4000 </IfModule> > "spiffytech", have you noticed if this errors happen when traffic is > higher or similar? > Traffic for my application doesn't get very high, but I've verified that the error occurs with only one person browsing the site. I've scanned through my code and don't see anything that would cause an obvious race condition. I've also deployed with the new, normal style of import instead of local_import, but the problem persists.

