We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf9481e commit 1f020e5Copy full SHA for 1f020e5
src/Domain/Runner.php
@@ -57,7 +57,7 @@ public function __construct(OutputInterface $output, FilesRepository $filesRepos
57
58
$this->configuration = $container->get(Configuration::class);
59
$this->cacheKey = $this->configuration->getCacheKey();
60
- $this->threads = $this->configuration->getNumberOfThreads();
+ $this->threads = max(1, $this->configuration->getNumberOfThreads());
61
}
62
63
/**
0 commit comments