Module: kamailio Branch: master Commit: 251bb74535594629499dfd2bb2cebfb4d728a260 URL: https://github.com/kamailio/kamailio/commit/251bb74535594629499dfd2bb2cebfb4...
Author: Anthony Alba ascanio.alba7@gmail.com Committer: Anthony Alba ascanio.alba7@gmail.com Date: 2022-06-09T23:53:48+08:00
app_python3: call PyOS_AfterFork_Child() only in child processes
- GH #3125: we should not call PyOS_AfterFork_Child() in the main process.
---
Modified: src/modules/app_python3/app_python3_mod.c
---
Diff: https://github.com/kamailio/kamailio/commit/251bb74535594629499dfd2bb2cebfb4... Patch: https://github.com/kamailio/kamailio/commit/251bb74535594629499dfd2bb2cebfb4...
---
diff --git a/src/modules/app_python3/app_python3_mod.c b/src/modules/app_python3/app_python3_mod.c index eb46f54f50..d250640e0c 100644 --- a/src/modules/app_python3/app_python3_mod.c +++ b/src/modules/app_python3/app_python3_mod.c @@ -200,19 +200,19 @@ static int child_init(int rank) * processes */ #if PY_VERSION_HEX >= 0x03070000 - /* this is causing abort on Python 3.8+ GH#3125 - * skip for now PyOS_AfterFork_Parent() ; - */ #endif return 0; } _apy_process_rank = rank; + + if (rank > 0) { #if PY_VERSION_HEX >= 0x03070000 - PyOS_AfterFork_Child(); + PyOS_AfterFork_Child(); #else - PyOS_AfterFork(); + PyOS_AfterFork(); #endif + } if (cfg_child_init()) { return -1; }