From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 23F581F66F for ; Wed, 18 Nov 2020 08:22:28 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] extindex: remove skip-docdata option Date: Wed, 18 Nov 2020 08:22:27 +0000 Message-Id: <20201118082227.10470-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Since extindex is entirely new, it doesn't have backwards compatibility concerns and never stored docdata, anyways. --- script/public-inbox-extindex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/public-inbox-extindex b/script/public-inbox-extindex index 5d56e2c3..78d6d9d9 100644 --- a/script/public-inbox-extindex +++ b/script/public-inbox-extindex @@ -26,7 +26,7 @@ GetOptions($opt, qw(verbose|v+ reindex rethread compact|c+ jobs|j=i fsync|sync! indexlevel|index-level|L=s max_size|max-size=s batch_size|batch-size=s - skip-docdata all help|h)) + all help|h)) or die $help; if ($opt->{help}) { print $help; exit 0 }; die "--jobs must be >= 0\n" if defined $opt->{jobs} && $opt->{jobs} < 0;