Skip to content

Commit f006e05

Browse files
committed
fix pytest
1 parent 9474dd4 commit f006e05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class BaseConfig:
5353
TEMPLATES_AUTO_RELOAD = True
5454
SECRET_KEY = get_or_create_secret("SECRET_KEY", generate_secret_key)
5555
# Sessions
56-
SESSION_TYPE = 'filesystem' # Required session type configuration
56+
SESSION_TYPE = 'cachelib' # Changed from 'filesystem' to 'cachelib'
5757
SESSION_CACHELIB = FileSystemCache(str(BASE_DIR / "database" / "sessions"))
5858
# Babel / i18n
5959
LANGUAGES = {

0 commit comments

Comments
 (0)