Skip to content

Commit

Permalink
Merge pull request #41671 from nextcloud/backport/41649/stable27
Browse files Browse the repository at this point in the history
[stable27] fix: lower threshold for system address book sync
  • Loading branch information
AndyScherzinger authored Nov 24, 2023
2 parents 0af2125 + e7c97ad commit b64de5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/dav/lib/Migration/Version1027Date20230504122946.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function __construct(private SyncService $syncService,
* @param array $options
*/
public function postSchemaChange(IOutput $output, Closure $schemaClosure, array $options): void {
if($this->userManager->countSeenUsers() > 1000) {
if($this->userManager->countSeenUsers() > 100 || array_sum($this->userManager->countUsers()) > 100) {
$this->config->setAppValue('dav', 'needs_system_address_book_sync', 'yes');
$output->info('Could not sync system address books during update - too many user records have been found. Please call occ dav:sync-system-addressbook manually.');
return;
Expand Down

0 comments on commit b64de5e

Please sign in to comment.