about summary refs log tree commit homepage
path: root/lib/PublicInbox/Gcf2Client.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2023-01-17 07:19:04 +0000
committerEric Wong <e@80x24.org>2023-01-18 23:25:59 +0000
commit2d95420e2255db25c0a5d9ec1dfee13aef1dcff6 (patch)
treec1af37128a03b751f85eb0b6579d136d2b9edb6e /lib/PublicInbox/Gcf2Client.pm
parent6bb2079cf610585176d23344047a048f4f8bf3dc (diff)
downloadpublic-inbox-2d95420e2255db25c0a5d9ec1dfee13aef1dcff6.tar.gz
This is a trivial change compared to Qspawn in the previous
commit.
Diffstat (limited to 'lib/PublicInbox/Gcf2Client.pm')
-rw-r--r--lib/PublicInbox/Gcf2Client.pm5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/PublicInbox/Gcf2Client.pm b/lib/PublicInbox/Gcf2Client.pm
index 09c3aa06..a49e2aad 100644
--- a/lib/PublicInbox/Gcf2Client.pm
+++ b/lib/PublicInbox/Gcf2Client.pm
@@ -1,4 +1,4 @@
-# Copyright (C) 2020-2021 all contributors <meta@public-inbox.org>
+# Copyright (C) all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 
 # connects public-inbox processes to PublicInbox::Gcf2::loop()
@@ -10,6 +10,7 @@ use PublicInbox::Gcf2; # fails if Inline::C or libgit2-dev isn't available
 use PublicInbox::Spawn qw(spawn);
 use Socket qw(AF_UNIX SOCK_STREAM);
 use PublicInbox::Syscall qw(EPOLLIN EPOLLET);
+use PublicInbox::DS qw(awaitpid);
 # fields:
 #        sock => socket to Gcf2::loop
 # The rest of these fields are compatible with what PublicInbox::Git
@@ -30,7 +31,7 @@ sub new  {
         $rdr->{0} = $rdr->{1} = $s2;
         my $cmd = [$^X, qw[-MPublicInbox::Gcf2 -e PublicInbox::Gcf2::loop]];
         $self->{'pid.owner'} = $$;
-        $self->{pid} = spawn($cmd, $env, $rdr);
+        awaitpid($self->{pid} = spawn($cmd, $env, $rdr), undef);
         $s1->blocking(0);
         $self->{inflight} = [];
         $self->{in} = $s1;