lib/PublicInbox/LeiOverview.pm | 8 ++++---- lib/PublicInbox/LeiToMail.pm | 2 +- diff --git a/lib/PublicInbox/LeiOverview.pm b/lib/PublicInbox/LeiOverview.pm index 52da225dea7fb983d5c58fb440e6551706009791..88034adadaed4e5d9551199964203d4ae0f5d401 100644 --- a/lib/PublicInbox/LeiOverview.pm +++ b/lib/PublicInbox/LeiOverview.pm @@ -217,13 +217,13 @@ $wcb->(undef, $smsg, $eml); }; } elsif ($l2m && $l2m->{-wq_s1}) { my ($lei_ipc, @io) = $lei->atfork_parent_wq($l2m); - # $io[-1] becomes a notification pipe that triggers EOF + # $io[0] becomes a notification pipe that triggers EOF # in this wq worker when all outstanding ->write_mail # calls are complete - pipe($l2m->{each_smsg_done}, $io[$#io + 1]) or die "pipe: $!"; - fcntl($io[-1], 1031, 4096) if $^O eq 'linux'; # F_SETPIPE_SZ + $io[0] = undef; + pipe($l2m->{each_smsg_done}, $io[0]) or die "pipe: $!"; + fcntl($io[0], 1031, 4096) if $^O eq 'linux'; # F_SETPIPE_SZ delete @$lei_ipc{qw(l2m opt mset_opt cmd)}; - $lei_ipc->{each_smsg_not_done} = $#io; my $git = $ibxish->git; # (LeiXSearch|Inbox|ExtSearch)->git $self->{git} = $git; my $git_dir = $git->{git_dir}; diff --git a/lib/PublicInbox/LeiToMail.pm b/lib/PublicInbox/LeiToMail.pm index c6c5f84b7a08b0a0a16a89ee3ce32d002de0fb20..c704dc2a111399c19585f7e1be7b4ef7d5b5cedc 100644 --- a/lib/PublicInbox/LeiToMail.pm +++ b/lib/PublicInbox/LeiToMail.pm @@ -464,7 +464,7 @@ } sub write_mail { # via ->wq_do my ($self, $git_dir, $smsg, $lei) = @_; - my $not_done = delete $self->{$lei->{each_smsg_not_done}}; + my $not_done = delete $self->{0} // die 'BUG: $not_done missing'; my $wcb = $self->{wcb} //= do { # first message $lei->atfork_child_wq($self); $self->write_cb($lei);