mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
fix(dav): Mark removal of dav object properties as expensive
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
parent
e0e7c2dddd
commit
e08dfab30f
2 changed files with 2 additions and 1 deletions
|
|
@ -45,7 +45,6 @@
|
|||
<step>OCA\DAV\Migration\RemoveOrphanEventsAndContacts</step>
|
||||
<step>OCA\DAV\Migration\RemoveClassifiedEventActivity</step>
|
||||
<step>OCA\DAV\Migration\RemoveDeletedUsersCalendarSubscriptions</step>
|
||||
<step>OCA\DAV\Migration\RemoveObjectProperties</step>
|
||||
</post-migration>
|
||||
<live-migration>
|
||||
<step>OCA\DAV\Migration\ChunkCleanup</step>
|
||||
|
|
|
|||
|
|
@ -57,6 +57,7 @@ use OC\Repair\RepairLogoDimension;
|
|||
use OC\Repair\RepairMimeTypes;
|
||||
use OC\Template\JSCombiner;
|
||||
use OCA\DAV\Migration\DeleteSchedulingObjects;
|
||||
use OCA\DAV\Migration\RemoveObjectProperties;
|
||||
use OCP\AppFramework\QueryException;
|
||||
use OCP\AppFramework\Utility\ITimeFactory;
|
||||
use OCP\Collaboration\Resources\IManager;
|
||||
|
|
@ -214,6 +215,7 @@ class Repair implements IOutput {
|
|||
\OCP\Server::get(IDBConnection::class)
|
||||
),
|
||||
\OCP\Server::get(DeleteSchedulingObjects::class),
|
||||
\OC::$server->get(RemoveObjectProperties::class),
|
||||
];
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue