Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(Updater): Lower deadlock log level from warning to info
If this is safe to ignore, then it does not make sense to keep warning the admins.

Signed-off-by: Louis Chemineau <[email protected]>
  • Loading branch information
artonge committed Sep 16, 2025
commit 8c04dbe599d32149fa72155bf00e3ae7ae31e100
2 changes: 1 addition & 1 deletion lib/private/Files/Cache/Updater.php
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ private function correctParentStorageMtime($internalPath) {
// 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
$this->logger->warning('Error while updating parent storage_mtime, should be safe to ignore', ['exception' => $e]);
$this->logger->info('Error while updating parent storage_mtime, should be safe to ignore', ['exception' => $e]);
}
}
}
Expand Down
Loading