From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: 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.1 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id AE45B1F85E for ; Thu, 12 Jul 2018 06:35:27 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] index: avoid false-positive warning on off-by-one Date: Thu, 12 Jul 2018 06:35:27 +0000 Message-Id: <20180712063527.11942-1-e@80x24.org> List-Id: We subtract one from "jobs" to map to "partitions" to account for the overview index and git fast-import jobs. --- script/public-inbox-index | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/public-inbox-index b/script/public-inbox-index index 2a7a524..e487e3f 100755 --- a/script/public-inbox-index +++ b/script/public-inbox-index @@ -109,7 +109,7 @@ sub index_dir { $v2w->{parallel} = 0; } else { my $n = $v2w->{partitions}; - if ($jobs != $n) { + if ($jobs != ($n + 1)) { warn "Unable to respect --jobs=$jobs, inbox was created with $n partitions\n"; } -- EW