mirror of
https://github.com/nextcloud/server.git
synced 2026-04-26 00:27:49 -04:00
Merge pull request #28348 from smichel17/patch-1
cron: exit 1 on exception
This commit is contained in:
commit
a6ab0e188d
1 changed files with 3 additions and 0 deletions
3
cron.php
3
cron.php
|
|
@ -20,6 +20,7 @@
|
|||
* @author Steffen Lindner <mail@steffen-lindner.de>
|
||||
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
||||
* @author Vincent Petry <vincent@nextcloud.com>
|
||||
* @author Stephen Michel <git@smichel.me>
|
||||
*
|
||||
* @license AGPL-3.0
|
||||
*
|
||||
|
|
@ -158,6 +159,8 @@ try {
|
|||
exit();
|
||||
} catch (Exception $ex) {
|
||||
\OC::$server->getLogger()->logException($ex, ['app' => 'cron']);
|
||||
exit(1);
|
||||
} catch (Error $ex) {
|
||||
\OC::$server->getLogger()->logException($ex, ['app' => 'cron']);
|
||||
exit(1);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue