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 e5e62e1 commit a69d292Copy full SHA for a69d292
changelog.md
@@ -1,5 +1,7 @@
1
### master
2
3
+- Fix start ready processes when maximum paralell processes is not configured or value is `null`
4
+
5
### [0.7.1](../../compare/0.7.0...0.7.1) - 2022-03-07
6
7
- Add `pcntl` into Docker images
src/Console/Application/ParallelProcessesApplication.php
@@ -227,7 +227,10 @@ protected function startReadyProcesses(): self
227
$readyProcess->start();
228
}
229
230
- if ($this->getProcesses()->countRunning() >= $maximumParallelProcesses) {
+ if (
231
+ is_int($maximumParallelProcesses)
232
+ && $this->getProcesses()->countRunning() >= $maximumParallelProcesses
233
+ ) {
234
break;
235
236
0 commit comments