unofficial mirror of meta@public-inbox.org
 help / color / mirror / Atom feed
* [PATCH] v2writable: avoid initiating leftover unindex if interrupted
@ 2020-11-15 23:27 Eric Wong
  0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2020-11-15 23:27 UTC (permalink / raw)
  To: meta

We can also avoid a needless progress message on log2stack
interruptions, too.
---
 lib/PublicInbox/V2Writable.pm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lib/PublicInbox/V2Writable.pm b/lib/PublicInbox/V2Writable.pm
index 5bac04a4..ba7cef13 100644
--- a/lib/PublicInbox/V2Writable.pm
+++ b/lib/PublicInbox/V2Writable.pm
@@ -1085,13 +1085,14 @@ sub sync_prepare ($$) {
 		# messages to show up in mirrors, too.
 		$sync->{D} //= $sync->{reindex} ? {} : undef; # OID_BIN => NR
 		my $stk = log2stack($sync, $git, $range);
+		return 0 if $sync->{quit};
 		my $nr = $stk ? $stk->num_records : 0;
 		$pr->("$nr\n") if $pr;
 		$unit->{stack} = $stk; # may be undef
 		unshift @{$sync->{todo}}, $unit;
 		$regen_max += $nr;
-		last if $sync->{quit};
 	}
+	return 0 if $sync->{quit};
 
 	# XXX this should not happen unless somebody bypasses checks in
 	# our code and blindly injects "d" file history into git repos

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2020-11-15 23:27 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-15 23:27 [PATCH] v2writable: avoid initiating leftover unindex if interrupted Eric Wong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).