Remove remnants of noop backend registration

Commit d1c7d0628c removed the noop backend
but it was still in the list of backends in core.configure(), this
cleans that up.

Change-Id: Ieaf0ee45cff1a1554afbaf02db3de43b9e9f6879
This commit is contained in:
Matt Riedemann
2015-08-18 07:49:46 -07:00
parent c69635c195
commit 0733ac142c

View File

@@ -62,7 +62,6 @@ NO_VALUE = api.NO_VALUE
_LOG = log.getLogger(__name__)
_BACKENDS = [
('oslo_cache.noop', 'oslo_cache.backends.noop', 'NoopCacheBackend'),
('oslo_cache.mongo', 'oslo_cache.backends.mongo', 'MongoCacheBackend'),
('oslo_cache.memcache_pool', 'oslo_cache.backends.memcache_pool',
'PooledMemcachedBackend'),
@@ -369,7 +368,6 @@ def configure(conf):
The following backends are registered in :mod:`dogpile.cache`:
* ``oslo_cache.noop`` - :class:`oslo_cache.backends.noop.NoopCacheBackend`
* ``oslo_cache.mongo`` -
:class:`oslo_cache.backends.mongo.MongoCacheBackend`
* ``oslo_cache.memcache_pool`` -