Merge "Add SESSION_ENGINE to local_settings.py.example"

This commit is contained in:
Jenkins 2016-05-19 22:25:39 +00:00 committed by Gerrit Code Review
commit c2ffbf238a

View File

@ -564,3 +564,13 @@ MURANO_REPO_URL = 'http://apps.openstack.org/api/v1/murano_repo/liberty/'
# Specify a maximum number of limit packages.
# PACKAGES_LIMIT = 100
# Set default session backend from browser cookies to database to
# avoid issues with forms during creating applications.
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'murano-dashboard.sqlite',
}
}
SESSION_ENGINE = 'django.contrib.sessions.backends.db'