diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2019-04-17 13:40:48 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2019-04-17 15:55:23 +0200 |
commit | 1d1c8b4e692a581883295857a7351c0a14e2dfba (patch) | |
tree | b3174f5bcd14dc76cde01ece233cdd3134bf99c2 /apps/dav/lib/Migration | |
parent | 5382eeccb053ecf17bb8f7aacd57ae3cc4518d27 (diff) | |
download | nextcloud-server-1d1c8b4e692a581883295857a7351c0a14e2dfba.tar.gz nextcloud-server-1d1c8b4e692a581883295857a7351c0a14e2dfba.zip |
avoids users searches on backend, faster processing
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/dav/lib/Migration')
-rw-r--r-- | apps/dav/lib/Migration/RegenerateBirthdayCalendars.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dav/lib/Migration/RegenerateBirthdayCalendars.php b/apps/dav/lib/Migration/RegenerateBirthdayCalendars.php index 2c2b4eb0e9a..263e6d00db4 100644 --- a/apps/dav/lib/Migration/RegenerateBirthdayCalendars.php +++ b/apps/dav/lib/Migration/RegenerateBirthdayCalendars.php @@ -72,7 +72,7 @@ class RegenerateBirthdayCalendars implements IRepairStep { } $output->info('Adding background jobs to regenerate birthday calendar'); - $this->userManager->callForAllUsers(function(IUser $user) { + $this->userManager->callForSeenUsers(function(IUser $user) { $this->jobList->add(GenerateBirthdayCalendarBackgroundJob::class, [ 'userId' => $user->getUID(), 'purgeBeforeGenerating' => true @@ -82,4 +82,4 @@ class RegenerateBirthdayCalendars implements IRepairStep { // if all were done, no need to redo the repair during next upgrade $this->config->setAppValue('dav', 'regeneratedBirthdayCalendarsForYearFix', 'yes'); } -}
\ No newline at end of file +} |