From: Eric Wong Date: Thu, 12 Jul 2018 06:35:27 +0000 (+0000) Subject: index: avoid false-positive warning on off-by-one X-Git-Tag: v1.2.0~490 X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=commitdiff_plain;h=8f5147a8860908a7dc582310681f05c016cfbb30 index: avoid false-positive warning on off-by-one We subtract one from "jobs" to map to "partitions" to account for the overview index and git fast-import jobs. --- diff --git a/script/public-inbox-index b/script/public-inbox-index index 2a7a524b..e487e3fe 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"; }