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 e1525a8 commit 8d0a3d8Copy full SHA for 8d0a3d8
app/code/Magento/Deploy/Process/Queue.php
@@ -336,6 +336,9 @@ private function isDeployed(Package $package)
336
if ($this->isCanBeParalleled()) {
337
if ($package->getState() === null) {
338
$pid = $this->getPid($package);
339
+
340
+ // When $pid comes back as null the child process for this package has not yet started; prevents both
341
+ // hanging until timeout expires (which was behaviour in 2.2.x) and the type error from strict_types
342
if ($pid === null) {
343
return false;
344
}
0 commit comments