about summary refs log tree commit homepage
path: root/lib/PublicInbox/SearchIdx.pm
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2020-08-10 02:12:01 +0000
committerEric Wong <e@yhbt.net>2020-08-10 06:26:23 +0000
commita27beb758ec7097768416966cf4a7b6984ef5da6 (patch)
tree9c38d654c108bd3f02f40b53256da2662fd7eabd /lib/PublicInbox/SearchIdx.pm
parent6a7e3c6f870d0555184b68940eb373fa102d4102 (diff)
downloadpublic-inbox-a27beb758ec7097768416966cf4a7b6984ef5da6.tar.gz
The rest of our indexing code uses `$opt' instead of `$opts'.
Diffstat (limited to 'lib/PublicInbox/SearchIdx.pm')
-rw-r--r--lib/PublicInbox/SearchIdx.pm22
1 files changed, 11 insertions, 11 deletions
diff --git a/lib/PublicInbox/SearchIdx.pm b/lib/PublicInbox/SearchIdx.pm
index 7f2447fe..5c39f3d6 100644
--- a/lib/PublicInbox/SearchIdx.pm
+++ b/lib/PublicInbox/SearchIdx.pm
@@ -539,11 +539,11 @@ sub unindex_both { # git->cat_async callback
 
 # called by public-inbox-index
 sub index_sync {
-        my ($self, $opts) = @_;
-        delete $self->{lock_path} if $opts->{-skip_lock};
-        $self->{ibx}->with_umask(\&_index_sync, $self, $opts);
-        if ($opts->{reindex}) {
-                my %again = %$opts;
+        my ($self, $opt) = @_;
+        delete $self->{lock_path} if $opt->{-skip_lock};
+        $self->{ibx}->with_umask(\&_index_sync, $self, $opt);
+        if ($opt->{reindex}) {
+                my %again = %$opt;
                 delete @again{qw(rethread reindex)};
                 index_sync($self, \%again);
         }
@@ -745,15 +745,15 @@ sub reindex_from ($$) {
 
 # indexes all unindexed messages (v1 only)
 sub _index_sync {
-        my ($self, $opts) = @_;
-        my $tip = $opts->{ref} || 'HEAD';
+        my ($self, $opt) = @_;
+        my $tip = $opt->{ref} || 'HEAD';
         my $git = $self->{ibx}->git;
-        $self->{batch_bytes} = $opts->{batch_size} // $BATCH_BYTES;
+        $self->{batch_bytes} = $opt->{batch_size} // $BATCH_BYTES;
         $git->batch_prepare;
-        my $pr = $opts->{-progress};
-        my $sync = { reindex => $opts->{reindex}, -opt => $opts };
+        my $pr = $opt->{-progress};
+        my $sync = { reindex => $opt->{reindex}, -opt => $opt };
         my $xdb = $self->begin_txn_lazy;
-        $self->{over}->rethread_prepare($opts);
+        $self->{over}->rethread_prepare($opt);
         my $mm = _msgmap_init($self);
         if ($sync->{reindex}) {
                 my $last = $mm->last_commit;