Fix typo on cache backend module

The correct module is 'dogpile.cache.memcached' and not
'dogpile.cache.memcache'.

It's important to backport this to Icehouse as all Juno
docs use the icehouse sample at this point. For example:
http://docs.openstack.org/trunk/config-reference/content/section_keystone.conf.html

Change-Id: Ie452c95dab4fcd04f65f6378c735490ee8cf4c70
(cherry picked from commit b8bbab7902)
This commit is contained in:
Alvaro Lopez Garcia 2014-04-22 10:41:26 +02:00 committed by Ihar Hrachyshka
parent 7c2bee7693
commit 6bf25d0759
2 changed files with 2 additions and 2 deletions

View File

@ -537,7 +537,7 @@
#expiration_time=600
# Dogpile.cache backend module. It is recommended that
# Memcache (dogpile.cache.memcache) or Redis
# Memcache (dogpile.cache.memcached) or Redis
# (dogpile.cache.redis) be used in production deployments.
# Small workloads (single process) like devstack can use the
# dogpile.cache.memory backend. (string value)

View File

@ -249,7 +249,7 @@ FILE_OPTIONS = {
# backend.
cfg.StrOpt('backend', default='keystone.common.cache.noop',
help='Dogpile.cache backend module. It is recommended '
'that Memcache (dogpile.cache.memcache) or Redis '
'that Memcache (dogpile.cache.memcached) or Redis '
'(dogpile.cache.redis) be used in production '
'deployments. Small workloads (single process) '
'like devstack can use the dogpile.cache.memory '