Skip to content

Commit 785f509

Browse files
Merge pull request #54824 from nextcloud/backport/50391/stable31
[stable31] fix(dav): Mark removal of dav object properties as expensive
2 parents 4ec5aa8 + e08dfab commit 785f509

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

apps/dav/appinfo/info.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545
<step>OCA\DAV\Migration\RemoveOrphanEventsAndContacts</step>
4646
<step>OCA\DAV\Migration\RemoveClassifiedEventActivity</step>
4747
<step>OCA\DAV\Migration\RemoveDeletedUsersCalendarSubscriptions</step>
48-
<step>OCA\DAV\Migration\RemoveObjectProperties</step>
4948
</post-migration>
5049
<live-migration>
5150
<step>OCA\DAV\Migration\ChunkCleanup</step>

lib/private/Repair.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@
5757
use OC\Repair\RepairMimeTypes;
5858
use OC\Template\JSCombiner;
5959
use OCA\DAV\Migration\DeleteSchedulingObjects;
60+
use OCA\DAV\Migration\RemoveObjectProperties;
6061
use OCP\AppFramework\QueryException;
6162
use OCP\AppFramework\Utility\ITimeFactory;
6263
use OCP\Collaboration\Resources\IManager;
@@ -214,6 +215,7 @@ public static function getExpensiveRepairSteps() {
214215
\OCP\Server::get(IDBConnection::class)
215216
),
216217
\OCP\Server::get(DeleteSchedulingObjects::class),
218+
\OC::$server->get(RemoveObjectProperties::class),
217219
];
218220
}
219221

0 commit comments

Comments
 (0)