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
{{ message }}
This repository has been archived by the owner on Sep 7, 2020. It is now read-only.
Per https://bugs.python.org/issue33725, on macOS the default behavior of the multiprocessing module is spawn instead of fork, which has been deemed unsafe in newer macOS versions. As a result, the way multiprocessing was implemented in pneumatic no longer works; instead, the uploader loops.
The benefit of multiprocessing as originally used is questionable since uploads are bound by network capability. At most, it just queues up files faster. Needs research.
The text was updated successfully, but these errors were encountered:
Per https://bugs.python.org/issue33725, on macOS the default behavior of the multiprocessing module is
spawn
instead offork
, which has been deemed unsafe in newer macOS versions. As a result, the way multiprocessing was implemented in pneumatic no longer works; instead, the uploader loops.Removed multiprocessing via 56654a2 for now.
The benefit of multiprocessing as originally used is questionable since uploads are bound by network capability. At most, it just queues up files faster. Needs research.
The text was updated successfully, but these errors were encountered: