1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-08-04 18:22:26 +00:00

change default of "skip_broken_item" to more user-friendly experience

This commit is contained in:
Peter Bieringer 2024-06-18 17:42:49 +02:00
parent 6b65800770
commit bbe7088561
3 changed files with 3 additions and 3 deletions

View file

@ -869,7 +869,7 @@ Default: `2592000`
Skip broken item instead of triggering an exception Skip broken item instead of triggering an exception
Default: False Default: `True`
##### hook ##### hook

2
config
View file

@ -100,7 +100,7 @@
#max_sync_token_age = 2592000 #max_sync_token_age = 2592000
# Skip broken item instead of triggering an exception # Skip broken item instead of triggering an exception
#skip_broken_item = False #skip_broken_item = True
# Command that is run after changes to storage # Command that is run after changes to storage
# Example: ([ -d .git ] || git init) && git add -A && (git diff --cached --quiet || git commit -m "Changes by \"%(user)s\"") # Example: ([ -d .git ] || git init) && git add -A && (git diff --cached --quiet || git commit -m "Changes by \"%(user)s\"")

View file

@ -224,7 +224,7 @@ DEFAULT_CONFIG_SCHEMA: types.CONFIG_SCHEMA = OrderedDict([
"help": "delete sync token that are older", "help": "delete sync token that are older",
"type": positive_int}), "type": positive_int}),
("skip_broken_item", { ("skip_broken_item", {
"value": "False", "value": "True",
"help": "skip broken item instead of triggering exception", "help": "skip broken item instead of triggering exception",
"type": bool}), "type": bool}),
("hook", { ("hook", {