about summary refs log tree commit homepage
path: root/lib/PublicInbox/IPC.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-08-14 00:29:42 +0000
committerEric Wong <e@80x24.org>2021-08-14 05:57:46 +0000
commitc7bcfe6cd6648ff015dcf29155c0c9c40e4f2b00 (patch)
tree4648f28c9769a5630f943a70e3833a5eb0cb2639 /lib/PublicInbox/IPC.pm
parent936641b6ae7d4a40b155adc5b016cf751897884a (diff)
downloadpublic-inbox-c7bcfe6cd6648ff015dcf29155c0c9c40e4f2b00.tar.gz
This may help diagnose "Exception: Document \d+ not found"
errors I'm seeing from "lei up" with HTTPS endpoints.
Diffstat (limited to 'lib/PublicInbox/IPC.pm')
-rw-r--r--lib/PublicInbox/IPC.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/IPC.pm b/lib/PublicInbox/IPC.pm
index 497a6035..d909dc1c 100644
--- a/lib/PublicInbox/IPC.pm
+++ b/lib/PublicInbox/IPC.pm
@@ -236,7 +236,7 @@ sub recv_and_run {
         undef $buf;
         my $sub = shift @$args;
         eval { $self->$sub(@$args) };
-        warn "$$ wq_worker: $@" if $@;
+        warn "$$ $0 wq_worker: $@" if $@;
         delete @$self{0..($nfd-1)};
         $n;
 }