From 4b1183ae002956a78bd552b5af924803a3322d43 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Mon, 16 Dec 2024 20:34:16 +0100 Subject: [PATCH] disable fsync during storage verification --- radicale/storage/multifilesystem/verify.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/radicale/storage/multifilesystem/verify.py b/radicale/storage/multifilesystem/verify.py index 776f1bfd..4c644c19 100644 --- a/radicale/storage/multifilesystem/verify.py +++ b/radicale/storage/multifilesystem/verify.py @@ -29,6 +29,8 @@ class StoragePartVerify(StoragePartDiscover, StorageBase): def verify(self) -> bool: item_errors = collection_errors = 0 + logger.info("Disable fsync during storage verification") + self._filesystem_fsync = False @types.contextmanager def exception_cm(sane_path: str, href: Optional[str]