change location of main lock file back to original

This commit is contained in:
Peter Bieringer 2025-03-29 06:57:10 +01:00
parent c23821ad0c
commit ecaed3188c

View file

@ -55,7 +55,7 @@ class StoragePartLock(StorageBase):
def __init__(self, configuration: config.Configuration) -> None: def __init__(self, configuration: config.Configuration) -> None:
super().__init__(configuration) 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) logger.debug("Lock file (StoragePartLock): %r" % lock_path)
self._lock = pathutils.RwLock(lock_path) self._lock = pathutils.RwLock(lock_path)
self._hook = configuration.get("storage", "hook") self._hook = configuration.get("storage", "hook")