From ecaed3188c35360c3871fe72ac8cbcc998a1f3c3 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sat, 29 Mar 2025 06:57:10 +0100 Subject: [PATCH] change location of main lock file back to original --- radicale/storage/multifilesystem/lock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/storage/multifilesystem/lock.py b/radicale/storage/multifilesystem/lock.py index 7298ea1e..0f7b56d9 100644 --- a/radicale/storage/multifilesystem/lock.py +++ b/radicale/storage/multifilesystem/lock.py @@ -55,7 +55,7 @@ class StoragePartLock(StorageBase): def __init__(self, configuration: config.Configuration) -> None: super().__init__(configuration) - lock_path = os.path.join(self._get_collection_root_folder(), ".Radicale.lock") + lock_path = os.path.join(self._filesystem_folder, ".Radicale.lock") logger.debug("Lock file (StoragePartLock): %r" % lock_path) self._lock = pathutils.RwLock(lock_path) self._hook = configuration.get("storage", "hook")