Hmmm, that's weird, I'm running Python 2.6.6 & mod_wsgi 3.2

cat /var/log/httpd/error_log | grep mod_wsgi

[Sun Feb 24 03:56:43 2013] [warn] mod_wsgi: Compiled for Python/2.6.2.
[Sun Feb 24 03:56:43 2013] [warn] mod_wsgi: Runtime using Python/2.6.6.
[Sun Feb 24 03:56:43 2013] [notice] Apache/2.2.15 (Unix) DAV/2 PHP/5.3.3 
mod_ssl/2.2.15 OpenSSL/1.0.0-fips mod_wsgi/3.2 Python/2.6.6 mod_perl/2.0.4 
Perl/v5.10.1 configured -- resuming normal operations

But I'm still getting the error logs:
[Mon Feb 25 11:28:54 2013] [error] Exception KeyError: 
KeyError(139946213496800,) in <module 'threading' from 
'/usr/lib64/python2.6/threading.pyc'> ignored



On Wednesday, February 13, 2013 3:51:53 PM UTC-6, Graham Dumpleton wrote:
>
> 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] 
> <javascript:>>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] <javascript:>.
>>
>> To post to this group, send email to [email protected]<javascript:>
>> .
>> 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.


Reply via email to