From c44b4b959772cf11b530055c9f67651518ea4927 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Tue, 27 Oct 2020 07:54:50 +0000 Subject: [PATCH] searchidx: ignore exceptions from ->remove_term This seems necessary for some cross-posted messages (and we did it historically before we used over.sqlite3). --- lib/PublicInbox/SearchIdx.pm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/PublicInbox/SearchIdx.pm b/lib/PublicInbox/SearchIdx.pm index 569efbb0..06d1a9f5 100644 --- a/lib/PublicInbox/SearchIdx.pm +++ b/lib/PublicInbox/SearchIdx.pm @@ -468,11 +468,13 @@ sub remove_eidx_info { my ($self, $docid, $oid, $eidx_key, $eml) = @_; begin_txn_lazy($self); my $doc = _get_doc($self, $docid, $oid) or return; - $doc->remove_term('O'.$eidx_key); + eval { $doc->remove_term('O'.$eidx_key) }; + warn "W: ->remove_term O$eidx_key: $@\n" if $@; for my $l ($eml->header_raw('List-Id')) { $l =~ /<([^>]+)>/ or next; my $lid = lc $1; - $doc->remove_term('G' . $lid); + eval { $doc->remove_term('G' . $lid) }; + warn "W: ->remove_term G$lid: $@\n" if $@; # nb: we don't remove the XL probabilistic terms # since terms may overlap if cross-posted. -- 2.44.0