1
0
Fork 0
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:
Unrud 2018-08-18 12:56:39 +02:00
parent 4282ea46e4
commit 8281769edf
6 changed files with 10 additions and 15 deletions

View file

@ -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",