Skip to content

Commit

Permalink
fix(files_trashbin): Remove unnecessary scanner logic when getting ve…
Browse files Browse the repository at this point in the history
…rsions from trash

Signed-off-by: Julius Härtl <jus@bitgrid.net>
  • Loading branch information
juliusknorr authored and MichaIng committed Feb 26, 2023
1 parent 78076c6 commit 59ca4fa
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions apps/files_trashbin/lib/Trashbin.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,6 @@ class Trashbin {
// unit: percentage; 50% of available disk space/quota
public const DEFAULTMAXSIZE = 50;

/**
* Whether versions have already be rescanned during this PHP request
*
* @var bool
*/
private static $scannedVersions = false;

/**
* Ensure we don't need to scan the file during the move to trash
* by triggering the scan in the pre-hook
Expand Down Expand Up @@ -980,23 +973,6 @@ private static function getVersionsFromTrash($filename, $timestamp, $user) {
/** @var \OC\Files\Storage\Storage $storage */
[$storage,] = $view->resolvePath('/');

//force rescan of versions, local storage may not have updated the cache
$waitstart = time();
while (!self::$scannedVersions) {
try {
$storage->getScanner()->scan('files_trashbin/versions');
self::$scannedVersions = true;
} catch (LockedException $e) {
/* a concurrent remove/restore from trash occurred,
* retry with a maximum wait time of approx. 15 seconds
*/
if (time() - $waitstart > 15) {
throw $e;
}
usleep(50000 + rand(0, 10000));
}
}

$pattern = \OC::$server->getDatabaseConnection()->escapeLikeParameter(basename($filename));
if ($timestamp) {
// fetch for old versions
Expand Down

0 comments on commit 59ca4fa

Please sign in to comment.