lib/PublicInbox/ExtSearchIdx.pm | 8 +++++--- diff --git a/lib/PublicInbox/ExtSearchIdx.pm b/lib/PublicInbox/ExtSearchIdx.pm index 890ac28283d27f1050e9e605743e95b0ec5d2e23..2cdc31cb885c839183af7e3b2847470b1d51e57b 100644 --- a/lib/PublicInbox/ExtSearchIdx.pm +++ b/lib/PublicInbox/ExtSearchIdx.pm @@ -298,7 +298,7 @@ if ($v == 2) { my $epoch_max; defined($ibx->git_dir_latest(\$epoch_max)) or return; $sync->{epoch_max} = $epoch_max; - sync_prepare($self, $sync) or return; # fills $sync->{todo} + sync_prepare($self, $sync); # or return # TODO: once MiscIdx is stable } elsif ($v == 1) { my $uv = $ibx->uidvalidity; my $lc = $self->{oidx}->eidx_meta("lc-v1:$ekey//$uv"); @@ -309,8 +309,10 @@ } else { warn "E: $ekey unsupported inbox version (v$v)\n"; return; } - index_todo($self, $sync, $_) for @{delete($sync->{todo}) // []}; - $self->{midx}->index_ibx($ibx); + unless ($sync->{quit}) { + index_todo($self, $sync, $_) for @{delete($sync->{todo}) // []}; + $self->{midx}->index_ibx($ibx) unless $sync->{quit}; + } $ibx->git->cleanup; # done with this inbox, now }