lib/PublicInbox/ExtSearchIdx.pm | 5 +++++ diff --git a/lib/PublicInbox/ExtSearchIdx.pm b/lib/PublicInbox/ExtSearchIdx.pm index acf35e3d23a3e91a9587e7102230147b4f98b268..d589d2c00f1a0aa508340fcfb040031b9972beb1 100644 --- a/lib/PublicInbox/ExtSearchIdx.pm +++ b/lib/PublicInbox/ExtSearchIdx.pm @@ -812,6 +812,9 @@ my ($self, $sync, $ibx) = @_; my $ibx_id = $ibx->{-ibx_id}; my $slice = 1000; my ($beg, $end) = (1, $slice); + my $err = sync_inbox($self, $sync, $ibx) and return; + my $max = $ibx->over->max; + $end = $max if $end > $max; # first, check if we missed any messages in target $ibx my $msgs; @@ -825,6 +828,7 @@ while (scalar(@{$msgs = $ibx->over->query_xover($beg, $end)})) { ${$sync->{nr}} = $beg; $beg = $msgs->[-1]->{num} + 1; $end = $beg + $slice; + $end = $max if $end > $max; if (checkpoint_due($sync)) { reindex_checkpoint($self, $sync); # release lock } @@ -952,6 +956,7 @@ my ($self, $sync, $ibx) = @_; my $err = _sync_inbox($self, $sync, $ibx); delete @$ibx{qw(mm over)}; warn $err, "\n" if defined($err); + $err; } sub dd_smsg { # git->cat_async callback