Commit 3c5fe1c1 authored by Hanno Schlichting's avatar Hanno Schlichting

LP #583702: Fixed regressions in mailhost queue processor code introduced in...

LP #583702: Fixed regressions in mailhost queue processor code introduced in 2.12.6 in the LP #574286 changes.
parent a434004a
...@@ -11,6 +11,9 @@ http://docs.zope.org/zope2/releases/. ...@@ -11,6 +11,9 @@ http://docs.zope.org/zope2/releases/.
Bugs Fixed 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. - Handle Unauthorized exceptions in xmlrpc correctly.
- Five's processInputs() would stomp on :list or :tuple values that contained - Five's processInputs() would stomp on :list or :tuple values that contained
......
...@@ -284,7 +284,7 @@ class MailBase(Implicit, Item, RoleManager): ...@@ -284,7 +284,7 @@ class MailBase(Implicit, Item, RoleManager):
while thread.isAlive(): while thread.isAlive():
# wait until thread is really dead # wait until thread is really dead
time.sleep(0.3) time.sleep(0.3)
del queue_threads[path] del queue_threads[key]
LOG.info('Thread for %s stopped' % key) LOG.info('Thread for %s stopped' % key)
@synchronized(lock) @synchronized(lock)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment