You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What
Our implementation makes use of Multiprocessing.queue and more specifically qsize that is not implemented in OSX. https://docs.python.org/2/library/multiprocessing.html#multiprocessing.Queue.qsize. Attempting to run on OSX will result in a fatal error and then our manually spawned threads will never join resulting in an infinite wait.
What
Our implementation makes use of
Multiprocessing.queue
and more specificallyqsize
that is not implemented in OSX.https://docs.python.org/2/library/multiprocessing.html#multiprocessing.Queue.qsize. Attempting to run on OSX will result in a fatal error and then our manually spawned threads will never join resulting in an infinite wait.
Minimally reproducible code:
(internal code spawns workers if this is the first iteration)
The text was updated successfully, but these errors were encountered: