diff options
author | Robin Appelman <robin@icewind.nl> | 2024-09-09 16:59:59 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2024-09-09 16:59:59 +0200 |
commit | da59fd4389bedd6b643f277b5e411872137569b3 (patch) | |
tree | 89a6c3cac4b2f066d104e633439a3709cd0797ad /lib/private/Files | |
parent | 0f732199d22cf85d991f48389c33fb6e76b7eefc (diff) | |
download | nextcloud-server-sharding-code-fixes.tar.gz nextcloud-server-sharding-code-fixes.zip |
fix: misc code fixes around db shardingsharding-code-fixes
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/private/Files')
-rw-r--r-- | lib/private/Files/Cache/Cache.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/Cache/Cache.php b/lib/private/Files/Cache/Cache.php index a8d9067050d..ab6ba2d64d6 100644 --- a/lib/private/Files/Cache/Cache.php +++ b/lib/private/Files/Cache/Cache.php @@ -1207,7 +1207,7 @@ class Cache implements ICache { } } - private function moveFromStorageSharded(ShardDefinition $shardDefinition, ICache $sourceCache, ICacheEntry $sourceEntry, $targetPath) { + private function moveFromStorageSharded(ShardDefinition $shardDefinition, ICache $sourceCache, ICacheEntry $sourceEntry, $targetPath): void { if ($sourceEntry->getMimeType() === ICacheEntry::DIRECTORY_MIMETYPE) { $fileIds = $this->getChildIds($sourceCache->getNumericStorageId(), $sourceEntry->getPath()); } else { |