You should be upgrading mod_wsgi from version 2.8. Simple as that. So long as you aren't using mod_wsgi 3.X, you will see this message.
Graham On 14 February 2013 05:06, Kellen Fox <[email protected]> wrote: > I can confirm that this issue is still present in python 2.7.3 as well > > > On Thursday, April 8, 2010 9:46:11 PM UTC-7, tmdk wrote: >> >> I have a Django app running that *appears* to work fine (from a user's >> perspective). But the error_log is constantly filled with these >> threading KeyErrors (see below). >> >> My environment: >> CentOS 5.4 64bit on Intel >> Stock Apache 2.2.3 >> Python 2.6.5 built from source with --enable_shared >> mod_wsgi 2.8 >> >> I removed Django from the equation and set up the basic hello world >> WSGI app from http://code.google.com/p/**modwsgi/wiki/** >> QuickConfigurationGuide<http://code.google.com/p/modwsgi/wiki/QuickConfigurationGuide> >> . >> >> I tried to eliminate multithreading issues by going to single threaded >> processes in the WSGI daemon: >> WSGIDaemonProcess myapp processes=10 threads=1 display-name=%{GROUP} >> >> But still, all I have to do is start apache and stop apache. And I >> get ~15 of these errors in the error_log, even without a single >> request being processed. And when requests are being processed, they >> come more often (but not predictably). >> >> What is this? I can't find any reference to this error. My setup is >> so basic, I don't understand what could be going wrong. >> >> >> [Fri Apr 09 04:34:54 2010] [error] Exception KeyError: >> KeyError(47125770724704,) in <module 'threading' from '/usr/local/lib/ >> python2.6/threading.pyc'> ignored >> [Fri Apr 09 04:34:54 2010] [error] Exception KeyError: >> KeyError(47125770724704,) in <module 'threading' from '/usr/local/lib/ >> python2.6/threading.pyc'> ignored >> [Fri Apr 09 04:34:54 2010] [error] Exception KeyError: >> KeyError(47125770724704,) in <module 'threading' from '/usr/local/lib/ >> python2.6/threading.pyc'> ignored >> [Fri Apr 09 04:34:54 2010] [error] Exception KeyError: >> KeyError(47125770724704,) in <module 'threading' from '/usr/local/lib/ >> python2.6/threading.pyc'> ignored >> [Fri Apr 09 04:34:54 2010] [error] Exception KeyError: >> KeyError(47125770724704,) in <module 'threading' from '/usr/local/lib/ >> python2.6/threading.pyc'> ignored >> [Fri Apr 09 04:34:54 2010] [error] Exception KeyError: >> KeyError(47125770724704,) in <module 'threading' from '/usr/local/lib/ >> python2.6/threading.pyc'> ignored >> [Fri Apr 09 04:34:54 2010] [error] Exception KeyError: >> KeyError(47125770724704,) in <module 'threading' from '/usr/local/lib/ >> python2.6/threading.pyc'> ignored >> [Fri Apr 09 04:34:54 2010] [error] Exception KeyError: >> KeyError(47125770724704,) in <module 'threading' from '/usr/local/lib/ >> python2.6/threading.pyc'> ignored >> [Fri Apr 09 04:34:54 2010] [error] Exception KeyError: >> KeyError(47125770724704,) in <module 'threading' from '/usr/local/lib/ >> python2.6/threading.pyc'> ignored >> [Fri Apr 09 04:34:54 2010] [error] Exception KeyError: >> KeyError(47125770724704,) in <module 'threading' from '/usr/local/lib/ >> python2.6/threading.pyc'> ignored >> [Fri Apr 09 04:34:54 2010] [error] Exception KeyError: >> KeyError(47125770724704,) in <module 'threading' from '/usr/local/lib/ >> python2.6/threading.pyc'> ignored >> [Fri Apr 09 04:34:54 2010] [error] Exception KeyError: >> KeyError(47125770724704,) in <module 'threading' from '/usr/local/lib/ >> python2.6/threading.pyc'> ignored >> [Fri Apr 09 04:34:54 2010] [error] Exception KeyError: >> KeyError(47125770724704,) in <module 'threading' from '/usr/local/lib/ >> python2.6/threading.pyc'> ignored >> [Fri Apr 09 04:34:54 2010] [error] Exception KeyError: >> KeyError(47125770724704,) in <module 'threading' from '/usr/local/lib/ >> python2.6/threading.pyc'> ignored >> [Fri Apr 09 04:34:54 2010] [error] Exception KeyError: >> KeyError(47125770724704,) in <module 'threading' from '/usr/local/lib/ >> python2.6/threading.pyc'> ignored >> [Fri Apr 09 04:34:54 2010] [error] Exception KeyError: >> KeyError(47125770724704,) in <module 'threading' from '/usr/local/lib/ >> python2.6/threading.pyc'> ignored >> [Fri Apr 09 04:34:54 2010] [error] Exception KeyError: >> KeyError(47125770724704,) in <module 'threading' from '/usr/local/lib/ >> python2.6/threading.pyc'> ignored >> [Fri Apr 09 04:34:54 2010] [error] Exception KeyError: >> KeyError(47125770724704,) in <module 'threading' from '/usr/local/lib/ >> python2.6/threading.pyc'> ignored >> >> Any help is greatly appreciated. >> >> -- > You received this message because you are subscribed to the Google Groups > "modwsgi" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/modwsgi?hl=en. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- You received this message because you are subscribed to the Google Groups "modwsgi" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/modwsgi?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
