Skip to content
Snippets Groups Projects
Commit d46e71d3 authored by mistydemeo's avatar mistydemeo
Browse files

Distribution.Simple.Setup: remove job cap

Fixes #3191.
parent 243e8eb1
No related branches found
No related tags found
No related merge requests found
...@@ -2237,7 +2237,6 @@ optionNumJobs get set = ...@@ -2237,7 +2237,6 @@ optionNumJobs get set =
_ -> case reads s of _ -> case reads s of
[(n, "")] [(n, "")]
| n < 1 -> Left "The number of jobs should be 1 or more." | n < 1 -> Left "The number of jobs should be 1 or more."
| n > 64 -> Left "You probably don't want that many jobs."
| otherwise -> Right (Just n) | otherwise -> Right (Just n)
_ -> Left "The jobs value should be a number or '$ncpus'" _ -> Left "The jobs value should be a number or '$ncpus'"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment