cron shall not operate in case we are in maintenance mode - fixes #14843
This commit is contained in:
parent
68a7041348
commit
e3fd13de88
6
cron.php
6
cron.php
|
@ -26,7 +26,11 @@ try {
|
|||
|
||||
if (\OCP\Util::needUpgrade()) {
|
||||
\OCP\Util::writeLog('cron', 'Update required, skipping cron', \OCP\Util::DEBUG);
|
||||
exit();
|
||||
exit;
|
||||
}
|
||||
if (\OC::$server->getSystemConfig()->getValue('maintenance', false)) {
|
||||
\OCP\Util::writeLog('cron', 'We are in maintenance mode, skipping cron', \OCP\Util::DEBUG);
|
||||
exit;
|
||||
}
|
||||
|
||||
// load all apps to get all api routes properly setup
|
||||
|
|
Loading…
Reference in New Issue