about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2020-09-22 18:49:50 +0000
committerEric Wong <e@80x24.org>2020-09-24 09:57:14 +0000
commit8d7216a0c278272d7d3525f4bb0ec1fa74486698 (patch)
tree3547a3330b3355d8e910a4421ec1e3f0651842ae
parent9dd93e4399c67abf74df6832181d442f81e0aa33 (diff)
downloadpublic-inbox-8d7216a0c278272d7d3525f4bb0ec1fa74486698.tar.gz
{unindex_range} only exists in the $sync state, nowadays, not the
V2Writable ($self) object.  $sync->{unindex_range} won't be
populated if $regen_max is zero, either, unless somebody is
injecting importable commits into an epoch history, in which
this change will result in no-op indexing doing no work.
-rw-r--r--lib/PublicInbox/V2Writable.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/V2Writable.pm b/lib/PublicInbox/V2Writable.pm
index b8abfa94..5ff2af10 100644
--- a/lib/PublicInbox/V2Writable.pm
+++ b/lib/PublicInbox/V2Writable.pm
@@ -1074,7 +1074,7 @@ sub sync_prepare ($$$) {
                 }
                 $all->cat_async_wait;
         }
-        if (!$regen_max && !keys(%{$self->{unindex_range}})) {
+        if (!$regen_max) {
                 $sync->{-regen_fmt} = "%u/?\n";
                 return 0;
         }