From 0ded32f4230268ffb84f1eb667ef38dc7c39ebfb Mon Sep 17 00:00:00 2001 From: ArnabChatterjee20k Date: Thu, 28 Aug 2025 18:29:10 +0530 Subject: [PATCH] removed duplicate triggering of the export bucket --- src/Migration/Sources/Appwrite.php | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/Migration/Sources/Appwrite.php b/src/Migration/Sources/Appwrite.php index 69479b16..2b154746 100644 --- a/src/Migration/Sources/Appwrite.php +++ b/src/Migration/Sources/Appwrite.php @@ -1159,22 +1159,6 @@ protected function exportGroupStorage(int $batchSize, array $resources): void ) ); } - - try { - if (in_array(Resource::TYPE_BUCKET, $resources)) { - $this->exportBuckets($batchSize); - } - } catch (\Throwable $e) { - $this->addError( - new Exception( - Resource::TYPE_BUCKET, - Transfer::GROUP_STORAGE, - message: $e->getMessage(), - code: $e->getCode(), - previous: $e - ) - ); - } } /**