user/dev discussion of public-inbox itself
 help / color / mirror / code / Atom feed
Search results ordered by [date|relevance]  view[summary|nested|Atom feed]
thread overview below | download mbox.gz: |
* [PATCH] index: avoid false-positive warning on off-by-one
@ 2018-07-12  6:35  7% Eric Wong
  0 siblings, 0 replies; 1+ results
From: Eric Wong @ 2018-07-12  6:35 UTC (permalink / raw)
  To: meta

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


^ permalink raw reply related	[relevance 7%]

Results 1-1 of 1 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2018-07-12  6:35  7% [PATCH] index: avoid false-positive warning on off-by-one Eric Wong

Code repositories for project(s) associated with this public inbox

	https://80x24.org/public-inbox.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).