mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-05 22:27:36 +03:00
fix option name
This commit is contained in:
parent
fc7c50b4cb
commit
5f79b089c8
5 changed files with 7 additions and 7 deletions
|
@ -13,7 +13,7 @@
|
||||||
* Improve: log important module versions on startup
|
* Improve: log important module versions on startup
|
||||||
* Improve: auth.ldap config shown on startup, terminate in case no password is supplied for bind user
|
* Improve: auth.ldap config shown on startup, terminate in case no password is supplied for bind user
|
||||||
* Add: option [auth] uc_username for uppercase conversion (similar to existing lc_username)
|
* Add: option [auth] uc_username for uppercase conversion (similar to existing lc_username)
|
||||||
* Add: option [debug] storage_cache_action for conditional logging
|
* Add: option [logging] storage_cache_action_on_debug for conditional logging
|
||||||
* Fix: set PRODID on collection upload (instead of vobject is inserting default one)
|
* Fix: set PRODID on collection upload (instead of vobject is inserting default one)
|
||||||
* Add: option [storage] use_mtime_and_size_for_item_cache for changing cache lookup from SHA256 to mtime_ns + size
|
* Add: option [storage] use_mtime_and_size_for_item_cache for changing cache lookup from SHA256 to mtime_ns + size
|
||||||
* Fix: buggy cache file content creation on collection upload
|
* Fix: buggy cache file content creation on collection upload
|
||||||
|
|
|
@ -1180,9 +1180,9 @@ Log rights rule which doesn't match on level=debug
|
||||||
|
|
||||||
Default: `False`
|
Default: `False`
|
||||||
|
|
||||||
##### #storage_cache_actions
|
##### storage_cache_actions_on_debug
|
||||||
|
|
||||||
Log storage cache actions
|
Log storage cache actions on level=debug
|
||||||
|
|
||||||
Default: `False`
|
Default: `False`
|
||||||
|
|
||||||
|
|
4
config
4
config
|
@ -231,8 +231,8 @@
|
||||||
# Log rights rule which doesn't match on level=debug
|
# Log rights rule which doesn't match on level=debug
|
||||||
#rights_rule_doesnt_match_on_debug = False
|
#rights_rule_doesnt_match_on_debug = False
|
||||||
|
|
||||||
# Log storage cache actions
|
# Log storage cache actions on level=debug
|
||||||
#storage_cache_actions = False
|
#storage_cache_actions_on_debug = False
|
||||||
|
|
||||||
[headers]
|
[headers]
|
||||||
|
|
||||||
|
|
|
@ -380,7 +380,7 @@ DEFAULT_CONFIG_SCHEMA: types.CONFIG_SCHEMA = OrderedDict([
|
||||||
"value": "False",
|
"value": "False",
|
||||||
"help": "log rights rules which doesn't match on level=debug",
|
"help": "log rights rules which doesn't match on level=debug",
|
||||||
"type": bool}),
|
"type": bool}),
|
||||||
("storage_cache_actions", {
|
("storage_cache_actions_on_debug", {
|
||||||
"value": "False",
|
"value": "False",
|
||||||
"help": "log storage cache action on level=debug",
|
"help": "log storage cache action on level=debug",
|
||||||
"type": bool}),
|
"type": bool}),
|
||||||
|
|
|
@ -98,7 +98,7 @@ class StorageBase(storage.BaseStorage):
|
||||||
self._folder_umask = configuration.get(
|
self._folder_umask = configuration.get(
|
||||||
"storage", "folder_umask")
|
"storage", "folder_umask")
|
||||||
self._debug_cache_actions = configuration.get(
|
self._debug_cache_actions = configuration.get(
|
||||||
"logging", "storage_cache_actions")
|
"logging", "storage_cache_actions_on_debug")
|
||||||
|
|
||||||
def _get_collection_root_folder(self) -> str:
|
def _get_collection_root_folder(self) -> str:
|
||||||
return os.path.join(self._filesystem_folder, "collection-root")
|
return os.path.join(self._filesystem_folder, "collection-root")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue