]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/LeiLsSearch.pm
www: drop --subject from "git send-email" instructions
[public-inbox.git] / lib / PublicInbox / LeiLsSearch.pm
index 2aa457c05707c60f1b503c8abb581023c3e5457a..0193e590b8b06c202d4034330e3eaf24e79e2344 100644 (file)
@@ -29,7 +29,7 @@ sub do_ls_search_long {
        my @x = sort(grep(/\A\Q$pfx/, PublicInbox::LeiSavedSearch::list($lei)));
        while (my $x = shift @x) {
                $ORS = '' if !scalar(@x);
-               my $lss = PublicInbox::LeiSavedSearch->new($lei, $x) or next;
+               my $lss = PublicInbox::LeiSavedSearch->up($lei, $x) or next;
                my $cfg = $lss->{-cfg};
                my $ent = {
                        q => $cfg->get_all('lei.q'),
@@ -71,12 +71,12 @@ sub do_ls_search_long {
 
 sub bg_worker ($$$) {
        my ($lei, $pfx, $json) = @_;
-       my $self = bless { -wq_nr_workers => 1, json => $json }, __PACKAGE__;
-       my ($op_c, $ops) = $lei->workers_start($self, 'ls-search', 1);
-       $lei->{lsss} = $self;
+       my $self = bless { json => $json }, __PACKAGE__;
+       my ($op_c, $ops) = $lei->workers_start($self, 1);
+       $lei->{wq1} = $self;
        $self->wq_io_do('do_ls_search_long', [], $pfx);
-       $self->wq_close(1);
-       $op_c->op_wait_event($ops);
+       $self->wq_close;
+       $lei->wait_wq_events($op_c, $ops);
 }
 
 sub lei_ls_search {