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 asvetlov
Recipients Clint Olsen, asvetlov, yselivanov
Date 2022-01-12.11:19:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1641986383.45.0.40754763175.issue46335@roundup.psfhosted.org>
In-reply-to
Content
Yes, your environment is clear.

As I see from traceback, you are stuck not with new process creation but with new thread starting.

The thread is used for waiting for the started process to finish.
It is the default configuration.
Maybe you need an alternative ChildWatcher setup by `asyncio.get_event_loop_policy().set_child_watcher(watcher)` call.

A relatively fresh Linux can use `PidfdChildWatcher`. `MultiLoopChildWatcher` is cross-platform.
`SafeChildWatcher` is the oldest and simplest implementation.

Please choose one and see how it works for you.
History
Date User Action Args
2022-01-12 11:19:43asvetlovsetrecipients: + asvetlov, yselivanov, Clint Olsen
2022-01-12 11:19:43asvetlovsetmessageid: <1641986383.45.0.40754763175.issue46335@roundup.psfhosted.org>
2022-01-12 11:19:43asvetlovlinkissue46335 messages
2022-01-12 11:19:43asvetlovcreate