From 8dc60e928d35ac29eef62a2d7963059edac55577 Mon Sep 17 00:00:00 2001 From: Kun Huang Date: Tue, 17 Sep 2013 13:11:30 +0800 Subject: [PATCH] fix wrong desciption of monkey_patch config The corrent desciption should be 'Enable monkey patching' Change-Id: I1ef14be75c1e46fa703bc8da1a68487e16ebd035 Closes-Bug: #1226190 --- cinder/common/config.py | 2 +- etc/cinder/cinder.conf.sample | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cinder/common/config.py b/cinder/common/config.py index 912705fcb..79ac8df13 100644 --- a/cinder/common/config.py +++ b/cinder/common/config.py @@ -186,7 +186,7 @@ global_opts = [ 'running commands as root'), cfg.BoolOpt('monkey_patch', default=False, - help='Whether to log monkey patching'), + help='Enable monkey patching'), cfg.ListOpt('monkey_patch_modules', default=[], help='List of modules/decorators to monkey patch'), diff --git a/etc/cinder/cinder.conf.sample b/etc/cinder/cinder.conf.sample index 03790856d..0e7e0ae30 100644 --- a/etc/cinder/cinder.conf.sample +++ b/etc/cinder/cinder.conf.sample @@ -422,7 +422,7 @@ # commands as root (string value) #rootwrap_config= -# Whether to log monkey patching (boolean value) +# Enable monkey patching (boolean value) #monkey_patch=false # List of modules/decorators to monkey patch (list value) -- 2.45.2