unofficial mirror of meta@public-inbox.org
 help / color / mirror / Atom feed
* [PATCH] searchidx: v1: raise on msgmap init failure
@ 2021-10-23 19:08 Eric Wong
  0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2021-10-23 19:08 UTC (permalink / raw)
  To: meta

Indexing any inboxes requires SQLite and msgmap, so don't hide
exceptions if it fails.
---
 lib/PublicInbox/SearchIdx.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/PublicInbox/SearchIdx.pm b/lib/PublicInbox/SearchIdx.pm
index 585f28f5..b886ce78 100644
--- a/lib/PublicInbox/SearchIdx.pm
+++ b/lib/PublicInbox/SearchIdx.pm
@@ -451,7 +451,7 @@ sub add_xapian ($$$$) {
 sub _msgmap_init ($) {
 	my ($self) = @_;
 	die "BUG: _msgmap_init is only for v1\n" if $self->{ibx}->version != 1;
-	$self->{mm} //= eval {
+	$self->{mm} //= do {
 		require PublicInbox::Msgmap;
 		PublicInbox::Msgmap->new_file($self->{ibx}, 1);
 	};

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

only message in thread, other threads:[~2021-10-23 19:08 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-23 19:08 [PATCH] searchidx: v1: raise on msgmap init failure 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).