From 06d1b65df783d395a9f45b0b725b96c76eff80f3 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Tue, 19 Jan 2021 09:34:32 +0000 Subject: lei_overview: do not write if $lei->{1} is gone We'll invalidate the {1} (stdout) field on SIGPIPE, so don't trigger a Perl warning by writing to it. --- lib/PublicInbox/LeiOverview.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib/PublicInbox/LeiOverview.pm') diff --git a/lib/PublicInbox/LeiOverview.pm b/lib/PublicInbox/LeiOverview.pm index 538d6bd5..8781259a 100644 --- a/lib/PublicInbox/LeiOverview.pm +++ b/lib/PublicInbox/LeiOverview.pm @@ -99,12 +99,13 @@ sub ovv_begin { # called once by parent (via PublicInbox::EOFpipe) sub ovv_end { my ($self, $lei) = @_; + my $out = $lei->{1} or return; if ($self->{fmt} eq 'json') { # JSON doesn't allow trailing commas, and preventing # trailing commas is a PITA when parallelizing outputs - print { $lei->{1} } "null]\n"; + print $out "null]\n"; } elsif ($self->{fmt} eq 'concatjson') { - print { $lei->{1} } "\n"; + print $out "\n"; } } -- cgit v1.2.3-24-ge0c7