From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.2 required=3.0 tests=ALL_TRUSTED,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id DA5931F57D for ; Wed, 4 Oct 2023 03:49:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1696391376; bh=ntLUDDSKRXeRe0Er2V0vU+Xzi8PBgCBXIIF8FaTJ0dk=; h=From:To:Subject:Date:In-Reply-To:References:From; b=o1+KFtxYhsiGcbn7cz/POhEJCA6fzLf3wplARSiDAG9IzQ4XeD24JETtgi2F2Iayt ETsM0Rcr0Q/8PUY8i0S/1XR4IdqsNFwBlkg+2hwUgTcNa8tugYeUyXgI8Xtnx6cpCj tIdcM3ELG2emwRz1dsUmApNvm0rRujJxMYhjZXiQ= From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 21/21] searchidx: fix redundant `in' in warning message Date: Wed, 4 Oct 2023 03:49:33 +0000 Message-ID: <20231004034933.3343930-22-e@80x24.org> In-Reply-To: <20231004034933.3343930-1-e@80x24.org> References: <20231004034933.3343930-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Fortunately, I've never actually seen that message... --- 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 2a0e06d1..8a571cfb 100644 --- a/lib/PublicInbox/SearchIdx.pm +++ b/lib/PublicInbox/SearchIdx.pm @@ -709,7 +709,7 @@ sub xdb_remove { my $xdb = $self->{xdb} // die 'BUG: missing {xdb}'; for my $docid (@docids) { eval { $xdb->delete_document($docid) }; - warn "E: #$docid not in in Xapian? $@\n" if $@; + warn "E: #$docid not in Xapian? $@\n" if $@; } }