mirror of
https://github.com/Kozea/Radicale.git
synced 2025-08-22 19:20:54 +00:00
Move filesystem_fsync config from section storage to internal
This commit is contained in:
parent
4282ea46e4
commit
8281769edf
6 changed files with 10 additions and 15 deletions
|
@ -164,10 +164,6 @@ INITIAL_CONFIG = OrderedDict([
|
|||
"value": 2592000, # 30 days
|
||||
"help": "delete sync token that are older",
|
||||
"type": int}),
|
||||
("filesystem_fsync", {
|
||||
"value": "True",
|
||||
"help": "sync all changes to filesystem during requests",
|
||||
"type": bool}),
|
||||
("hook", {
|
||||
"value": "",
|
||||
"help": "command that is run after changes to storage",
|
||||
|
@ -189,6 +185,10 @@ INITIAL_CONFIG = OrderedDict([
|
|||
"type": bool})]))])
|
||||
# Default configuration for "internal" settings
|
||||
INTERNAL_CONFIG = OrderedDict([
|
||||
("filesystem_fsync", {
|
||||
"value": "True",
|
||||
"help": "sync all changes to filesystem during requests",
|
||||
"type": bool}),
|
||||
("internal_server", {
|
||||
"value": "False",
|
||||
"help": "the internal server is used",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue