mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 08:02:54 +11:00
Removed caches since they are not used. Back to db based session storage. Re-added sessions backend.
This commit is contained in:
parent
984fcae343
commit
715be017dd
1 changed files with 2 additions and 8 deletions
|
@ -95,6 +95,8 @@ TEMPLATE_CONTEXT_PROCESSORS += (
|
|||
|
||||
INSTALLED_APPS = (
|
||||
'django.contrib.staticfiles',
|
||||
'django.contrib.sessions',
|
||||
|
||||
'mptt',
|
||||
'south',
|
||||
'gunicorn',
|
||||
|
@ -110,14 +112,6 @@ DATABASES = {
|
|||
}
|
||||
}
|
||||
|
||||
CACHES = {
|
||||
'default': {
|
||||
'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
|
||||
}
|
||||
}
|
||||
|
||||
SESSION_ENGINE = 'django.contrib.sessions.backends.cache'
|
||||
|
||||
#==============================================================================
|
||||
# App specific settings
|
||||
#==============================================================================
|
||||
|
|
Loading…
Reference in a new issue