Mark deprecated options correctly

Two options have a help indication they are deprecated but do not use
the deprecated_for_removal attribute. This is used across
documentation to better inform developers and deployers.

Change-Id: Ice3f8975b635aacf1e323d362fa9b8c500c2e782
This commit is contained in:
Ronald Bradford 2016-03-17 12:11:02 -04:00
parent 4e062bd664
commit c16011654d
1 changed files with 2 additions and 0 deletions

View File

@ -101,9 +101,11 @@ global_opts = [
help='The topic that volume backup nodes listen on'),
cfg.BoolOpt('enable_v1_api',
default=True,
deprecated_for_removal=True,
help=_("DEPRECATED: Deploy v1 of the Cinder API.")),
cfg.BoolOpt('enable_v2_api',
default=True,
deprecated_for_removal=True,
help=_("DEPRECATED: Deploy v2 of the Cinder API.")),
cfg.BoolOpt('enable_v3_api',
default=True,