You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks a lot for sharing your findings!
Indeed, the way it kills the process is SIGKILL, which as far as I know can/will(?) leave child processes detached. So killing the entire process tree seems to be the right thing to do right now. In theory, making recursive calls could work.
Stray processes could be a real issue in long running processes :/.
Hello! Any news on this?
I am using v3.1.43 and could reproduce when my network connection was down.
I also could not treat the Exceptions (already catching 3).
From what I can tell, Eliah has collected a lot of probably related information, which may be leveraged into a fix. From what I know, nobody is specifically working on that though.
I am using GitPython 2.0.2.
While having kill_after_timeout in the pull()
e.g. g.pull(kill_after_timeout=10)
Before the process killing, there were four processes running:
After the timeout, (3) and (4) remained.
Should _kill_process() be recursively called like the following?
The text was updated successfully, but these errors were encountered: