From 98d9b6f05d63f6282eefbe8756802628997aa53c Mon Sep 17 00:00:00 2001 From: alberto-bortolan <84085342+alberto-bortolan@users.noreply.github.com> Date: Wed, 8 Jan 2025 13:56:23 +0000 Subject: [PATCH] disable the MD5 calculation when retrieving the list of files from local storage (#831) --- medusa/storage/local_storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/medusa/storage/local_storage.py b/medusa/storage/local_storage.py index e753d3cf..136b250c 100644 --- a/medusa/storage/local_storage.py +++ b/medusa/storage/local_storage.py @@ -59,7 +59,7 @@ async def _list_blobs(self, prefix=None): AbstractBlob( str(p.relative_to(self.root_dir)), os.stat(self.root_dir / p).st_size, - self._md5(self.root_dir / p), + None, # was self._md5(self.root_dir / p), see Task1 for issue #829 datetime.datetime.fromtimestamp(os.stat(self.root_dir / p).st_mtime), None )