unofficial mirror of meta@public-inbox.org
 help / color / mirror / Atom feed
* [PATCH] scripts/dupe-finder: restore $dbh variable
@ 2020-10-16  2:08 Kyle Meyer
  2020-10-16  4:23 ` Eric Wong
  0 siblings, 1 reply; 3+ messages in thread
From: Kyle Meyer @ 2020-10-16  2:08 UTC (permalink / raw)
  To: meta

When dupe-finder was switched from ->search->{over_ro} to ->over, the
database handle was dropped.  Restore it because a spot downstream
uses it.

Fixes: 73e3a6ed6e95adc6 (use more idiomatic internal API for ->over access)
---
 scripts/dupe-finder | 1 +
 1 file changed, 1 insertion(+)

diff --git a/scripts/dupe-finder b/scripts/dupe-finder
index 7b490cbb..deeb0d6f 100644
--- a/scripts/dupe-finder
+++ b/scripts/dupe-finder
@@ -22,6 +22,7 @@ if (index($repo, '@') > 0) {
 $ibx or die "No inbox";
 $ibx->search or die "search not available for inbox";
 my $over = $ibx->over;
+my $dbh = $over->dbh;
 
 sub emit ($) {
 	my ($nums) = @_;

base-commit: 8080720d242f7450ecaf7e962c0f4ac9c5c2115b
-- 
2.28.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-10-16  5:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-16  2:08 [PATCH] scripts/dupe-finder: restore $dbh variable Kyle Meyer
2020-10-16  4:23 ` Eric Wong
2020-10-16  5:02   ` Kyle Meyer

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).