mirror of
https://github.com/Kozea/Radicale.git
synced 2025-09-15 20:36:55 +00:00
fix option name
This commit is contained in:
parent
fc7c50b4cb
commit
5f79b089c8
5 changed files with 7 additions and 7 deletions
|
@ -380,7 +380,7 @@ DEFAULT_CONFIG_SCHEMA: types.CONFIG_SCHEMA = OrderedDict([
|
|||
"value": "False",
|
||||
"help": "log rights rules which doesn't match on level=debug",
|
||||
"type": bool}),
|
||||
("storage_cache_actions", {
|
||||
("storage_cache_actions_on_debug", {
|
||||
"value": "False",
|
||||
"help": "log storage cache action on level=debug",
|
||||
"type": bool}),
|
||||
|
|
|
@ -98,7 +98,7 @@ class StorageBase(storage.BaseStorage):
|
|||
self._folder_umask = configuration.get(
|
||||
"storage", "folder_umask")
|
||||
self._debug_cache_actions = configuration.get(
|
||||
"logging", "storage_cache_actions")
|
||||
"logging", "storage_cache_actions_on_debug")
|
||||
|
||||
def _get_collection_root_folder(self) -> str:
|
||||
return os.path.join(self._filesystem_folder, "collection-root")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue