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.
2 parents b483558 + 45d2147 commit 219c508Copy full SHA for 219c508
lib/private/BackgroundJob/JobList.php
@@ -307,6 +307,7 @@ private function buildJob(array $row): ?IJob {
307
$class = $row['class'];
308
$job = new $class();
309
} else {
310
+ $this->logger->warning('failed to create instance of background job: ' . $row['class'], ['app' => 'cron', 'exception' => $e]);
311
// Remove job from disabled app or old version of an app
312
$this->removeById($row['id']);
313
return null;
0 commit comments