Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32.4k
gh-84559: Change the multiprocessing start method default toforkserver
#101556
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
gh-84559: Change the multiprocessing start method default toforkserver
#101556
Uh oh!
There was an error while loading.Please reload this page.
Conversation
We drop 'fork' in favor of 'forkserver' or 'spawn'. See the issue for details.
fork
forkserver
Misc/NEWS.d/next/Library/2024-09-19-00-09-48.gh-issue-84559.IrxvQe.rst OutdatedShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
@ericsnowcurrently could you review? (likely an easy one) |
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
LGTM
Thanks for following this through!
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
bedevere-bot commentedSep 26, 2024
b65f2cd
intopython:mainUh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
We change the default from
fork
toforkserver
orspawn
. See the issue for details.This change is intended for Python 3.14.
TODO:
main
.'fork'
is broken: change to `'forkserver' || 'spawn'
#84559