cron shall not operate in case we are in maintenance mode - fixes #14843

remotes/origin/external-backend-ondemand
Thomas Müller 10 years ago
parent 68a7041348
commit e3fd13de88
  1. 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…
Cancel
Save