aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2023-05-24 17:04:13 +0200
committerbackportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com>2023-05-26 07:46:25 +0000
commit0a7594753f9afd48bb20a228c8248810ac534b1b (patch)
tree0022e4c691ab01b9d0571623ee1e5c5134ee5f7b
parent8f0da6b9f74b361cf31ea8a8ef8badf0685a9211 (diff)
downloadnextcloud-server-0a7594753f9afd48bb20a228c8248810ac534b1b.tar.gz
nextcloud-server-0a7594753f9afd48bb20a228c8248810ac534b1b.zip
fix: execute throws docrine exceptions not our wrapped ones
Signed-off-by: Julius Härtl <jus@bitgrid.net>
-rw-r--r--lib/private/Files/Cache/Updater.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Files/Cache/Updater.php b/lib/private/Files/Cache/Updater.php
index d94cff0685d..457dd207e9d 100644
--- a/lib/private/Files/Cache/Updater.php
+++ b/lib/private/Files/Cache/Updater.php
@@ -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