diff options
author | Matt Martz <matt@sivel.net> | 2019-10-16 15:30:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-16 15:30:50 -0500 |
commit | 82ee341fe03e2bdb3c3d14cda0953469b80750e7 (patch) | |
tree | f2b79ef507d141c48d83c507d634d517c54d7418 /changelogs/fragments/python38-macos.yaml | |
parent | f638f29e445b4e9e51d348ad0414c88cbaf67925 (diff) | |
download | ansible-82ee341fe03e2bdb3c3d14cda0953469b80750e7.tar.gz |
Explicitly use multiprocessing fork start method (#63581)
* Explicitly use multiprocessing fork start method
* Remove unused import
* Remove unused import
* Fallback to just multiprocessing on py2
Diffstat (limited to 'changelogs/fragments/python38-macos.yaml')
-rw-r--r-- | changelogs/fragments/python38-macos.yaml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/changelogs/fragments/python38-macos.yaml b/changelogs/fragments/python38-macos.yaml new file mode 100644 index 0000000000..e418dbedbd --- /dev/null +++ b/changelogs/fragments/python38-macos.yaml @@ -0,0 +1,2 @@ +bugfixes: +- TaskQueueManager - Explicitly set the mutliprocessing start method to ``fork`` to avoid issues with the default on macOS now being ``spawn``. |