You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my Sentry I found such an error: Uncaught Error: Call to a member function getPid() on null
from:
Elements\Bundle\ProcessManagerBundle\Model\MonitoringItem::isAlive
code:
public function isAlive(): bool
{
if ($this->isMessengerPending()) {
return true;
}
if ($this->getPid()) {
$messageBus = \Pimcore::getContainer()->get('messenger.bus.pimcore-core');
$message = new CheckCommandAliveMessage($this->getId());
$messageBus->dispatch($message);
return (bool)self::getById($this->getId())->getPid();
} else {
return false;
}
}
The text was updated successfully, but these errors were encountered:
Hello,
In my Sentry I found such an error: Uncaught Error: Call to a member function getPid() on null
from:
Elements\Bundle\ProcessManagerBundle\Model\MonitoringItem::isAlive
code:
The text was updated successfully, but these errors were encountered: