From 49529307802306e4c54ff25ff2d330781033be4d Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Tue, 4 Feb 2025 09:26:25 +0100 Subject: [PATCH] fix tests --- src/Symfony/Component/Process/Process.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Process/Process.php b/src/Symfony/Component/Process/Process.php index 280a732d5db54..5d6792da01a0d 100644 --- a/src/Symfony/Component/Process/Process.php +++ b/src/Symfony/Component/Process/Process.php @@ -1307,7 +1307,7 @@ protected function updateStatus(bool $blocking) $this->readPipes($running && $blocking, '\\' !== \DIRECTORY_SEPARATOR || !$running); - if ($this->fallbackStatus && $this->isSigchildEnabled()) { + if ($this->fallbackStatus) { $this->processInformation = $this->fallbackStatus + $this->processInformation; }