Fix error in cache.configure_cache_region usage doc

The usage example of cache.configure_cache_region was missing
one input parameter, CONF.

TrivialFix

Change-Id: I43427fac6da2f4399d574ce762b40967d414fdda
This commit is contained in:
Rodolfo Alonso Hernandez 2017-06-09 18:44:15 +01:00
parent f288eae21f
commit 6a4e6df734
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ A simple example of oslo.cache in use::
# Load config file here
cache.configure_cache_region(example_cache_region)
cache.configure_cache_region(CONF, example_cache_region)
@MEMOIZE