Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorThomas Steur <tsteur@users.noreply.github.com>2020-12-15 06:50:16 +0300
committerGitHub <noreply@github.com>2020-12-15 06:50:16 +0300
commit797817e42f5f4124b3d01efb412126eb39ce4e8c (patch)
tree26c7a019a834833685277bfcf811172634f3e44e /core
parent8c73d9273fd981a87bd27a20a883bc9a2d49f012 (diff)
If one process' output is "abnormal", don't declare all other concurrently running processes as finished (#16951)
Instead still wait for all the other commands to finish.
Diffstat (limited to 'core')
-rw-r--r--core/CliMulti.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/CliMulti.php b/core/CliMulti.php
index 3b0909d347..c390cf8b38 100644
--- a/core/CliMulti.php
+++ b/core/CliMulti.php
@@ -231,7 +231,7 @@ class CliMulti
foreach ($this->outputs as $output) {
if ($output->getOutputId() === $pid && $output->isAbnormal()) {
$process->finishProcess();
- return true;
+ continue;
}
}