about summary refs log tree commit homepage
path: root/lib/PublicInbox/SearchIdx.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/SearchIdx.pm')
-rw-r--r--lib/PublicInbox/SearchIdx.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/PublicInbox/SearchIdx.pm b/lib/PublicInbox/SearchIdx.pm
index 00e63938..4caa66d3 100644
--- a/lib/PublicInbox/SearchIdx.pm
+++ b/lib/PublicInbox/SearchIdx.pm
@@ -78,12 +78,12 @@ sub new {
 sub need_xapian ($) { $_[0]->{indexlevel} =~ $xapianlevels }
 
 sub _xdb_release {
-        my ($self) = @_;
+        my ($self, $wake) = @_;
         if (need_xapian($self)) {
                 my $xdb = delete $self->{xdb} or croak 'not acquired';
                 $xdb->close;
         }
-        $self->lock_release if $self->{creat};
+        $self->lock_release($wake) if $self->{creat};
         undef;
 }
 
@@ -800,7 +800,7 @@ sub _index_sync {
                 }
                 $self->commit_txn_lazy;
                 $git->cleanup;
-                $xdb = _xdb_release($self);
+                $xdb = _xdb_release($self, $nr);
                 # let another process do some work... <
                 $pr->("indexed $nr/$self->{ntodo}\n") if $pr && $nr;
                 if (!$newest) {