about summary refs log tree commit homepage
path: root/lib/PublicInbox/LeiXSearch.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/LeiXSearch.pm')
-rw-r--r--lib/PublicInbox/LeiXSearch.pm5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/PublicInbox/LeiXSearch.pm b/lib/PublicInbox/LeiXSearch.pm
index e997431f..b3cace74 100644
--- a/lib/PublicInbox/LeiXSearch.pm
+++ b/lib/PublicInbox/LeiXSearch.pm
@@ -387,8 +387,9 @@ sub query_prepare { # called by wq_do
 
 sub fail_handler ($;$$) {
         my ($lei, $code, $io) = @_;
-        if (my $lxs = delete $lei->{lxs}) {
-                $lxs->wq_wait_old($lei) if $lxs->wq_kill_old; # lei-daemon
+        for my $f (qw(lxs l2m)) {
+                my $wq = delete $lei->{$f} or next;
+                $wq->wq_wait_old($lei) if $wq->wq_kill_old; # lei-daemon
         }
         close($io) if $io; # needed to avoid warnings on SIGPIPE
         $lei->x_it($code // (1 >> 8));