We'll just let the ExtSearchIdx code handle this uncommon case
by doing a full commit.
---
 lib/PublicInbox/LeiStore.pm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/lib/PublicInbox/LeiStore.pm b/lib/PublicInbox/LeiStore.pm
index d2dd4e7b..87082638 100644
--- a/lib/PublicInbox/LeiStore.pm
+++ b/lib/PublicInbox/LeiStore.pm
@@ -79,7 +79,10 @@ sub importer {
                my $old = -e $latest;
                PublicInbox::Import::init_bare($latest);
                my $git = PublicInbox::Git->new($latest);
-               $git->qx(qw(config core.sharedRepository 0600)) if !$old;
+               if (!$old) {
+                       $git->qx(qw(config core.sharedRepository 0600));
+                       $self->done; # force eidx_init on next round
+               }
                my $packed_bytes = $git->packed_bytes;
                my $unpacked_bytes = $packed_bytes / $self->packing_factor;
                if ($unpacked_bytes >= $self->rotate_bytes) {
--
unsubscribe: one-click, see List-Unsubscribe header
archive: https://public-inbox.org/meta/

Reply via email to