From 3bf6e50eb676982b7554f77d91806d5088e7bff8 Mon Sep 17 00:00:00 2001 From: Bo Wang Date: Mon, 21 Mar 2016 19:15:51 +0800 Subject: [PATCH] Default SESSION_ENGINE is not Local memory storage Value of SESSION_ENGINE in settings.py had been changed from "cache" to "signed_cookies" in patch: https://review.openstack.org/#/c/6473/12. According info in deployment.rst is out of sync, fix it. Closes-Bug: 1568747 Change-Id: Iaa104479dcf0e094e5c6e9c63c3a518064f6fb6e --- doc/source/topics/deployment.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/doc/source/topics/deployment.rst b/doc/source/topics/deployment.rst index b145b08ca1..df077b1c30 100644 --- a/doc/source/topics/deployment.rst +++ b/doc/source/topics/deployment.rst @@ -105,9 +105,8 @@ drawbacks: * No shared storage across processes or workers. * No persistence after a process terminates. -The local memory backend is enabled as the default for Horizon solely because -it has no dependencies. It is not recommended for production use, or even for -serious development work. For better options, read on. +It is not recommended for production use, or even for serious development work. +For better options, read on. Memcached ---------