Include external bridge deprecation warning in string

This is to ensure that the deprecation warning shows up
in the docs.[1]

1. https://review.openstack.org/#/c/232353/1/doc/common/tables/neutron-l3_agent.xml

Closes-Bug: #1494066
Change-Id: Id2ddec42df3ab376244bbf37b1cdd8b524382f7c
This commit is contained in:
Kevin Benton 2015-10-14 00:24:39 -07:00
parent 655a1a2147
commit f7273b3052
2 changed files with 4 additions and 2 deletions

View File

@ -39,7 +39,8 @@ OPTS = [
cfg.StrOpt('external_network_bridge', default='br-ex',
deprecated_for_removal=True,
help=_("Name of bridge used for external network "
"traffic.")),
"traffic. This option is deprecated and will be removed "
"in the M release.")),
cfg.IntOpt('metadata_port',
default=9697,
help=_("TCP Port used by Neutron metadata namespace "

View File

@ -40,7 +40,8 @@ class NeutronDebugAgent(object):
cfg.StrOpt('external_network_bridge', default='br-ex',
deprecated_for_removal=True,
help=_("Name of bridge used for external network "
"traffic.")),
"traffic. This option is deprecated and will be "
"removed in the M release.")),
]
def __init__(self, conf, client, driver):