]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Include external bridge deprecation warning in string
authorKevin Benton <blak111@gmail.com>
Wed, 14 Oct 2015 07:24:39 +0000 (00:24 -0700)
committerKevin Benton <blak111@gmail.com>
Wed, 14 Oct 2015 07:26:05 +0000 (00:26 -0700)
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

neutron/agent/l3/config.py
neutron/debug/debug_agent.py

index b55cab5a1e511c2649f99a8e5640939834e7e852..ce0def6453bfa706dca5c9d85e888e224c7cd540 100644 (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 "
index 7eba7e9e82511060dd7af6df12fa348f94cca143..89f17bd0973c7b4e419998e7bec2bf5708121b40 100644 (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):