Browse Source

fix: execute throws docrine exceptions not our wrapped ones

Signed-off-by: Julius Härtl <jus@bitgrid.net>
tags/v28.0.0beta1
Julius Härtl 1 year ago
parent
commit
9453c2d40d
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      lib/private/Files/Cache/Updater.php

+ 2
- 2
lib/private/Files/Cache/Updater.php View File

@@ -27,7 +27,7 @@
*/
namespace OC\Files\Cache;

use OC\DB\Exceptions\DbalException;
use Doctrine\DBAL\Exception\DeadlockException;
use OC\Files\FileInfo;
use OCP\Files\Cache\ICacheEntry;
use OCP\Files\Cache\IUpdater;
@@ -260,7 +260,7 @@ class Updater implements IUpdater {
if ($mtime !== false) {
try {
$this->cache->update($parentId, ['storage_mtime' => $mtime]);
} catch (DbalException $e) {
} catch (DeadlockException $e) {
// ignore the failure.
// with failures concurrent updates, someone else would have already done it.
// in the worst case the `storage_mtime` isn't updated, which should at most only trigger an extra rescan

Loading…
Cancel
Save