mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-03 21:27:36 +03:00
use collection-root location for lock instead of base directory
This commit is contained in:
parent
3ee5433397
commit
b744e9658c
1 changed files with 2 additions and 1 deletions
|
@ -55,7 +55,8 @@ 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._filesystem_folder, ".Radicale.lock")
|
lock_path = os.path.join(self._get_collection_root_folder(), ".Radicale.lock")
|
||||||
|
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")
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue