mirror of
https://github.com/nextcloud/server.git
synced 2026-05-21 17:45:40 -04:00
chore: fix typos in CronService
Signed-off-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
This commit is contained in:
parent
ac15544703
commit
fb234092bb
1 changed files with 2 additions and 2 deletions
|
|
@ -163,7 +163,7 @@ class CronService {
|
|||
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) {
|
||||
|
|
@ -248,7 +248,7 @@ class CronService {
|
|||
}
|
||||
}
|
||||
|
||||
// Makes sure last error isn't catched by shutdown function
|
||||
// Makes sure last error isn't caught by shutdown function
|
||||
error_clear_last();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue