Re: Bug report: orphaned pack-objects after killing upload-pack on [
From: Junio C Hamano <hidden>
Date: 2020-11-25 21:42:29
Jeff King [off-list ref] writes:
So I think it is still a good idea to do, and what I wrote earlier is as good a we can do. René, do you want to wrap up your similar patch for the fetch side?
In the meantime, I may queue this on 'seen' but it cannot move forward without a signoff. Thanks.
--- >8 ------ >8 ------ >8 ------ >8 ------ >8 ---From: René Scharfe <redacted> Date: Fri, 20 Nov 2020 19:52:45 +0100 Subject: [PATCH] upload-pack: kill pack-objects helper on signal or exit We spawn an external pack-objects process to actually send objects to the remote side. If we are killed by a signal during this process, the pack-objects will hang around as a zombie. We should take it down when we go down. --- upload-pack.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/upload-pack.c b/upload-pack.c
index 3b858eb457..d4f7192d04 100644
--- a/upload-pack.c
+++ b/upload-pack.c@@ -321,6 +321,7 @@ static void create_pack_file(struct upload_pack_data *pack_data, pack_objects.in = -1; pack_objects.out = -1; pack_objects.err = -1; + pack_objects.clean_on_exit = 1; if (start_command(&pack_objects)) die("git upload-pack: unable to fork git-pack-objects");
--
2.29.2-538-g65d51b1459