about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-03-07 12:15:23 +0000
committerEric Wong <e@yhbt.net>2020-03-07 19:10:35 +0000
commit98407632803aa6441e7882c713d55a399a25b710 (patch)
tree9392748ff18af9263a3c18d362ba2938966ad203
parentd107a62797ea4126d0132db72dda21e7706e866d (diff)
downloadpublic-inbox-98407632803aa6441e7882c713d55a399a25b710.tar.gz
We can just create a ParentPipe and let PublicInbox::DS
manage its life cycle.  While we're at it, favor `\&coderef'
over `*coderef' so we're explicit about it being a code ref
and not some other ref type.
-rw-r--r--lib/PublicInbox/Daemon.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/PublicInbox/Daemon.pm b/lib/PublicInbox/Daemon.pm
index cd6a86af..43ef2691 100644
--- a/lib/PublicInbox/Daemon.pm
+++ b/lib/PublicInbox/Daemon.pm
@@ -602,11 +602,10 @@ sub daemon_loop ($$$$) {
                 WINCH => 'IGNORE',
                 CHLD => \&PublicInbox::DS::enqueue_reap,
         };
-        my $parent_pipe;
         if ($worker_processes > 0) {
                 $refresh->(); # preload by default
                 my $fh = master_loop(); # returns if in child process
-                $parent_pipe = PublicInbox::ParentPipe->new($fh, *worker_quit);
+                PublicInbox::ParentPipe->new($fh, \&worker_quit);
         } else {
                 reopen_logs();
                 $set_user->() if $set_user;