diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2025-01-24 10:19:40 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2025-01-24 10:19:40 +0100 |
commit | 71007255d43e77dd719fecfce0c2b1dacf3ed675 (patch) | |
tree | 81d1e033670705707d1b77157584a7d90a7a9291 | |
parent | d7ce5d4f94f9fe0c4915d0250dcee26ad72f95c6 (diff) | |
download | nextcloud-server-fix/dav/remove-object-properties-expensive.tar.gz nextcloud-server-fix/dav/remove-object-properties-expensive.zip |
fix(dav): Mark removal of dav object properties as expensivefix/dav/remove-object-properties-expensive
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
-rw-r--r-- | apps/dav/appinfo/info.xml | 1 | ||||
-rw-r--r-- | lib/private/Repair.php | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/apps/dav/appinfo/info.xml b/apps/dav/appinfo/info.xml index a438a4dd063..2b320786e5e 100644 --- a/apps/dav/appinfo/info.xml +++ b/apps/dav/appinfo/info.xml @@ -44,7 +44,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> diff --git a/lib/private/Repair.php b/lib/private/Repair.php index 5b6daa36a03..c1b679a5c55 100644 --- a/lib/private/Repair.php +++ b/lib/private/Repair.php @@ -58,6 +58,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; @@ -215,6 +216,7 @@ class Repair implements IOutput { ), \OC::$server->get(ValidatePhoneNumber::class), \OC::$server->get(DeleteSchedulingObjects::class), + \OC::$server->get(RemoveObjectProperties::class), ]; } |