diff options
Diffstat (limited to 'core/Command')
-rw-r--r-- | core/Command/Upgrade.php | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/core/Command/Upgrade.php b/core/Command/Upgrade.php index 86f049d9f2a..5a2deea0b6c 100644 --- a/core/Command/Upgrade.php +++ b/core/Command/Upgrade.php @@ -99,8 +99,7 @@ class Upgrade extends Command { $this->config, \OC::$server->getIntegrityCodeChecker(), $this->logger, - $this->installer, - \OC::$server->getJobList() + $this->installer ); $dispatcher = \OC::$server->getEventDispatcher(); @@ -192,9 +191,6 @@ class Upgrade extends Command { $updater->listen('\OC\Updater', 'maintenanceActive', function () use($output) { $output->writeln('<info>Maintenance mode is kept active</info>'); }); - $updater->listen('\OC\Updater', 'waitForCronToFinish', function () use($output) { - $output->writeln('<info>Waiting for cron to finish (checks again in 5 seconds) …</info>'); - }); $updater->listen('\OC\Updater', 'updateEnd', function ($success) use($output, $self) { if ($success) { |