mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
fix(metadata): set background job on fresh setup
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
This commit is contained in:
parent
f85ccc26a4
commit
df1489343a
1 changed files with 2 additions and 0 deletions
|
|
@ -14,6 +14,7 @@ use Exception;
|
|||
use InvalidArgumentException;
|
||||
use OC\Authentication\Token\PublicKeyTokenProvider;
|
||||
use OC\Authentication\Token\TokenCleanupJob;
|
||||
use OC\Core\BackgroundJobs\GenerateMetadataJob;
|
||||
use OC\Log\Rotate;
|
||||
use OC\Preview\BackgroundCleanupJob;
|
||||
use OC\TextProcessing\RemoveOldTasksBackgroundJob;
|
||||
|
|
@ -417,6 +418,7 @@ class Setup {
|
|||
$jobList->add(BackgroundCleanupJob::class);
|
||||
$jobList->add(RemoveOldTasksBackgroundJob::class);
|
||||
$jobList->add(CleanupDeletedUsers::class);
|
||||
$jobList->add(GenerateMetadataJob::class);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue