Message410391
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. |
|
Date |
User |
Action |
Args |
2022-01-12 11:19:43 | asvetlov | set | recipients:
+ asvetlov, yselivanov, Clint Olsen |
2022-01-12 11:19:43 | asvetlov | set | messageid: <1641986383.45.0.40754763175.issue46335@roundup.psfhosted.org> |
2022-01-12 11:19:43 | asvetlov | link | issue46335 messages |
2022-01-12 11:19:43 | asvetlov | create | |
|