mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 17:23:59 -04:00
fix(caldav): lower scheduling table size warning
Signed-off-by: Anna Larch <anna@nextcloud.com>
This commit is contained in:
parent
883b016f74
commit
157b5cbabe
2 changed files with 3 additions and 3 deletions
|
|
@ -24,7 +24,7 @@ class SchedulingTableSize {
|
|||
}
|
||||
|
||||
public function description(): string {
|
||||
return $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');
|
||||
return $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');
|
||||
}
|
||||
|
||||
public function severity(): string {
|
||||
|
|
@ -39,6 +39,6 @@ class SchedulingTableSize {
|
|||
$count = $query->fetchOne();
|
||||
$query->closeCursor();
|
||||
|
||||
return $count <= 500000;
|
||||
return $count <= 50000;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -683,7 +683,7 @@ class CheckSetupControllerTest extends TestCase {
|
|||
'temporaryDirectoryWritable' => false,
|
||||
\OCA\Settings\SetupChecks\LdapInvalidUuids::class => ['pass' => true, 'description' => 'Invalid UUIDs of LDAP users or groups have been found. Please review your "Override UUID detection" settings in the Expert part of the LDAP configuration and use "occ ldap:update-uuid" to update them.', 'severity' => 'warning'],
|
||||
\OCA\Settings\SetupChecks\NeedsSystemAddressBookSync::class => ['pass' => true, 'description' => 'The DAV system address book sync has not run yet as your instance has more than 1000 users or because an error occured. Please run it manually by calling occ dav:sync-system-addressbook.', 'severity' => 'warning'],
|
||||
\OCA\Settings\SetupChecks\SchedulingTableSize::class => ['pass' => true, 'description' => 'You have more than 500 000 rows in the scheduling objects table. Please run the expensive repair jobs via occ maintenance:repair --include-expensive', 'severity' => 'warning'],
|
||||
\OCA\Settings\SetupChecks\SchedulingTableSize::class => ['pass' => true, 'description' => 'You have more than 50 000 rows in the scheduling objects table. Please run the expensive repair jobs via occ maintenance:repair --include-expensive', 'severity' => 'warning'],
|
||||
'isBruteforceThrottled' => false,
|
||||
'bruteforceRemoteAddress' => '',
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in a new issue