From 8f5147a8860908a7dc582310681f05c016cfbb30 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Thu, 12 Jul 2018 06:35:27 +0000 Subject: 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. --- script/public-inbox-index | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'script') 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"; } -- cgit v1.2.3-24-ge0c7