This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author nelson
Recipients nelson, sbt, vinay.sajip
Date 2015-01-20.20:47:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1421786860.57.0.480358763608.issue23278@psf.upfronthosting.co.za>
In-reply-to
Content
Doing some more testing, I noticed that if I ask multiprocessing to also log, the problem stops occurring. If I configure multiprocessing.log_to_stderr() instead, the error still occurs. 

Here's how I configured multiprocessing logging that makes the problem go away. This goes right at the top of the main() function.

    mp_logger = multiprocessing.get_logger()
    mp_logger.propagate=True
    mp_logger.setLevel(logging.DEBUG)
History
Date User Action Args
2015-01-20 20:47:40nelsonsetrecipients: + nelson, vinay.sajip, sbt
2015-01-20 20:47:40nelsonsetmessageid: <1421786860.57.0.480358763608.issue23278@psf.upfronthosting.co.za>
2015-01-20 20:47:40nelsonlinkissue23278 messages
2015-01-20 20:47:40nelsoncreate