cache_ttl default

This commit is contained in:
Jörn-Michael Miehe 2023-09-08 01:39:53 +00:00
parent 5cf0846c68
commit 30c5788d4d
2 changed files with 2 additions and 1 deletions

View file

@ -14,6 +14,7 @@
], ],
"env": { "env": {
"PYDEVD_DISABLE_FILE_VALIDATION": "1", "PYDEVD_DISABLE_FILE_VALIDATION": "1",
"CACHE_TTL": "30",
}, },
"justMyCode": true, "justMyCode": true,
} }

View file

@ -58,7 +58,7 @@ class Settings(BaseSettings):
webdav: DavSettings = DavSettings() webdav: DavSettings = DavSettings()
cache_ttl: int = 30 cache_ttl: int = 60 * 30
config_filename: str = "config.toml" config_filename: str = "config.toml"