Skip to content

Commit

Permalink
fix(caldav): lower scheduling table size warning
Browse files Browse the repository at this point in the history
Signed-off-by: Anna Larch <anna@nextcloud.com>
  • Loading branch information
miaulalala committed Jun 19, 2024
1 parent 572f611 commit e6a6e6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/settings/lib/SetupChecks/SchedulingTableSize.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ public function run(): bool {
$count = $query->fetchOne();
$query->closeCursor();

return $count <= 500000;
return $count <= 50000;
}
}

0 comments on commit e6a6e6a

Please sign in to comment.