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 vstinner
Recipients vstinner
Date 2018-12-14.11:56:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1544788585.59.0.788709270274.issue35479@psf.upfronthosting.co.za>
In-reply-to
Content
_worker_handler has two issues:

* It polls the worker status every status every 100 ms: I created bpo-35493 to investigate how to avoid that
* After close() or terminate() has been called, it loops until self._cache is empty. I would like to use result.wait(), but a result never completes after terminate(): I created bpo-35478 to see if tasks can be unblocked in that case (to ensure that result.wait() completes after terminate().
History
Date User Action Args
2018-12-14 11:56:25vstinnersetrecipients: + vstinner
2018-12-14 11:56:25vstinnersetmessageid: <1544788585.59.0.788709270274.issue35479@psf.upfronthosting.co.za>
2018-12-14 11:56:25vstinnerlinkissue35479 messages
2018-12-14 11:56:25vstinnercreate