aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings
diff options
context:
space:
mode:
authorAnna Larch <anna@nextcloud.com>2024-06-19 15:04:53 +0200
committerAndy Scherzinger <info@andy-scherzinger.de>2024-07-25 20:16:38 +0200
commite95a46daac3ae0b2af7132f7db6dde0813f9b897 (patch)
tree61b0ff432fb3442e89a6d110f3827175474b8021 /apps/settings
parent9c947752607ba028fa8b301353218b0e21bd599d (diff)
downloadnextcloud-server-e95a46daac3ae0b2af7132f7db6dde0813f9b897.tar.gz
nextcloud-server-e95a46daac3ae0b2af7132f7db6dde0813f9b897.zip
fix(caldav): lower scheduling table size warning
Signed-off-by: Anna Larch <anna@nextcloud.com>
Diffstat (limited to 'apps/settings')
-rw-r--r--apps/settings/lib/SetupChecks/SchedulingTableSize.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/apps/settings/lib/SetupChecks/SchedulingTableSize.php b/apps/settings/lib/SetupChecks/SchedulingTableSize.php
index cf629f5b12c..b23972ca7dc 100644
--- a/apps/settings/lib/SetupChecks/SchedulingTableSize.php
+++ b/apps/settings/lib/SetupChecks/SchedulingTableSize.php
@@ -14,6 +14,8 @@ use OCP\SetupCheck\ISetupCheck;
use OCP\SetupCheck\SetupResult;
class SchedulingTableSize implements ISetupCheck {
+ public const MAX_SCHEDULING_ENTRIES = 50000;
+
public function __construct(
private IL10N $l10n,
private IDBConnection $connection,
@@ -36,9 +38,11 @@ class SchedulingTableSize implements ISetupCheck {
$count = $query->fetchOne();
$query->closeCursor();
- if ($count > 500000) {
+ if ($count > self::MAX_SCHEDULING_ENTRIES) {
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 %s rows in the scheduling objects table. Please run the expensive repair jobs via occ maintenance:repair --include-expensive.', [
+ self::MAX_SCHEDULING_ENTRIES,
+ ])
);
}
return SetupResult::success(