about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
authorEric Wong (Contractor, The Linux Foundation) <e@80x24.org>2018-03-02 00:50:56 +0000
committerEric Wong (Contractor, The Linux Foundation) <e@80x24.org>2018-03-02 00:50:56 +0000
commit66642eb8e5f51a675d699c4fe9107202d61d2626 (patch)
tree60952b8e2cb214a6897669c3650e6147624b22df /lib
parentd4492802d5994ab3a354d1e5c4e9ab00dbc51aa8 (diff)
downloadpublic-inbox-66642eb8e5f51a675d699c4fe9107202d61d2626.tar.gz
Diffstat (limited to 'lib')
-rw-r--r--lib/PublicInbox/SearchIdx.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/SearchIdx.pm b/lib/PublicInbox/SearchIdx.pm
index f4238fe8..ec3a6f3e 100644
--- a/lib/PublicInbox/SearchIdx.pm
+++ b/lib/PublicInbox/SearchIdx.pm
@@ -837,7 +837,7 @@ sub remote_close {
         print $w "close\n" or die "failed to write to pid:$pid: $!\n";
         close $w or die "failed to close pipe for pid:$pid: $!\n";
         waitpid($pid, 0) == $pid or die "remote process did not finish";
-        $? == 0 or die ref($self)." exited with: $?";
+        $? == 0 or die ref($self)." pid:$pid exited with: $?";
 }
 
 1;