From: Eric Wong Date: Sun, 10 Jan 2021 12:15:07 +0000 (+0000) Subject: ipc: drop -ipc_parent_pid field X-Git-Tag: v1.7.0~1389 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=1ff129f4429686f6dfcde565574f05b21986f6a0;p=public-inbox.git ipc: drop -ipc_parent_pid field It is not used anywhere. --- diff --git a/lib/PublicInbox/IPC.pm b/lib/PublicInbox/IPC.pm index 5bca3627..4d29532c 100644 --- a/lib/PublicInbox/IPC.pm +++ b/lib/PublicInbox/IPC.pm @@ -107,7 +107,6 @@ sub ipc_worker_spawn { defined(my $pid = fork) or die "fork: $!"; if ($pid == 0) { eval { PublicInbox::DS->Reset }; - $self->{-ipc_parent_pid} = $parent; $w_req = $r_res = undef; $w_res->autoflush(1); $SIG{$_} = 'IGNORE' for (qw(TERM INT QUIT));