Remove unused 'deprecated' option from auth_strategy opt

Noticed that the auth_strategy option in
cinder/common/config.py has a 'deprecated' option.  I
can only see that 'no_auth' and 'keystone' are used anywhere
in the code.  Looking at the git logs it appears that
the 'deprecated' option may have been pulled over when we split
from Nova.  This patch removes the unused option.

DocImpact

Change-Id: I34383f9ceb87d10030e1c28f4bc0a7d8c21467d4
This commit is contained in:
Jay S Bryant 2015-10-02 12:44:13 -05:00
parent 6058c9d38f
commit 6041122531
1 changed files with 2 additions and 3 deletions

View File

@ -175,9 +175,8 @@ global_opts = [
help='The full class name of the volume backup API class'),
cfg.StrOpt('auth_strategy',
default='keystone',
choices=['noauth', 'keystone', 'deprecated'],
help='The strategy to use for auth. Supports noauth, keystone, '
'and deprecated.'),
choices=['noauth', 'keystone'],
help='The strategy to use for auth. Supports noauth or keystone.'),
cfg.ListOpt('enabled_backends',
default=None,
help='A list of backend names to use. These backend names '