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 30babfc commit 0bd1874
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/settings/lib/SetupChecks/SchedulingTableSize.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ public function run(): SetupResult {
$count = $query->fetchOne();
$query->closeCursor();

if ($count > 500000) {
if ($count > 50000) {
return SetupResult::warning(
$this->l10n->t('You have more than 500 000 rows in the scheduling objects table. Please run the expensive repair jobs via occ maintenance:repair --include-expensive')
$this->l10n->t('You have more than 50 000 rows in the scheduling objects table. Please run the expensive repair jobs via occ maintenance:repair --include-expensive')
);
}
return SetupResult::success(
Expand Down

0 comments on commit 0bd1874

Please sign in to comment.