[Zope-Checkins] SVN: Zope/branches/2.12/ LP #583702: Fixed regressions in mailhost queue processor code introduced in 2.12.6 in the LP #574286 changes.

Hanno Schlichting hannosch at hannosch.eu
Sun Jun 13 11:47:10 EDT 2010


Log message for revision 113414:
  LP #583702: Fixed regressions in mailhost queue processor code introduced in 2.12.6 in the LP #574286 changes.
  

Changed:
  U   Zope/branches/2.12/doc/CHANGES.rst
  U   Zope/branches/2.12/src/Products/MailHost/MailHost.py

-=-
Modified: Zope/branches/2.12/doc/CHANGES.rst
===================================================================
--- Zope/branches/2.12/doc/CHANGES.rst	2010-06-13 15:29:56 UTC (rev 113413)
+++ Zope/branches/2.12/doc/CHANGES.rst	2010-06-13 15:47:09 UTC (rev 113414)
@@ -11,6 +11,9 @@
 Bugs Fixed
 ++++++++++
 
+- LP #583702: Fixed regressions in mailhost queue processor code introduced
+  in 2.12.6 in the LP #574286 changes.
+
 - Handle Unauthorized exceptions in xmlrpc correctly.
 
 - Five's processInputs() would stomp on :list or :tuple values that contained

Modified: Zope/branches/2.12/src/Products/MailHost/MailHost.py
===================================================================
--- Zope/branches/2.12/src/Products/MailHost/MailHost.py	2010-06-13 15:29:56 UTC (rev 113413)
+++ Zope/branches/2.12/src/Products/MailHost/MailHost.py	2010-06-13 15:47:09 UTC (rev 113414)
@@ -284,7 +284,7 @@
             while thread.isAlive():
                 # wait until thread is really dead
                 time.sleep(0.3)
-            del queue_threads[path]
+            del queue_threads[key]
             LOG.info('Thread for %s stopped' % key)
 
     @synchronized(lock)



More information about the Zope-Checkins mailing list