Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions core/Service/CronService.php
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ private function runCli(string $appMode, ?array $jobClasses): void {
return;
}

$message = 'Uncatched error when running job ' . $this->currentJob->getId() . ': ' . $error['message'];
$message = 'Uncaught error when running job ' . $this->currentJob->getId() . ': ' . $error['message'];
$this->logger->error($message);
$this->verboseOutput($message);
if ($this->currentJob instanceof IJob) {
Expand Down Expand Up @@ -248,7 +248,7 @@ private function runCli(string $appMode, ?array $jobClasses): void {
}
}

// Makes sure last error isn't catched by shutdown function
// Makes sure last error isn't caught by shutdown function
error_clear_last();
}

Expand Down
Loading