]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Commits staged files in the git status from rc1.
authorThomas Goirand <thomas@goirand.fr>
Tue, 1 Apr 2014 16:54:18 +0000 (00:54 +0800)
committerThomas Goirand <thomas@goirand.fr>
Tue, 1 Apr 2014 16:54:18 +0000 (00:54 +0800)
Change-Id: Ifb6114673f1d5d39dc074685cb4e82d596ff1a3a

74 files changed:
neutron/agent/linux/dhcp.py
neutron/locale/ar/LC_MESSAGES/neutron.po
neutron/locale/bg_BG/LC_MESSAGES/neutron.po
neutron/locale/bn_IN/LC_MESSAGES/neutron.po
neutron/locale/bs/LC_MESSAGES/neutron.po
neutron/locale/ca/LC_MESSAGES/neutron.po
neutron/locale/cs/LC_MESSAGES/neutron.po
neutron/locale/da/LC_MESSAGES/neutron.po
neutron/locale/de/LC_MESSAGES/neutron.po
neutron/locale/en_AU/LC_MESSAGES/neutron.po
neutron/locale/en_GB/LC_MESSAGES/neutron.po
neutron/locale/en_US/LC_MESSAGES/neutron.po
neutron/locale/es/LC_MESSAGES/neutron.po
neutron/locale/es_MX/LC_MESSAGES/neutron.po
neutron/locale/eu/LC_MESSAGES/neutron.po
neutron/locale/eu_ES/LC_MESSAGES/neutron.po
neutron/locale/fa/LC_MESSAGES/neutron.po
neutron/locale/fi_FI/LC_MESSAGES/neutron.po
neutron/locale/fil/LC_MESSAGES/neutron.po
neutron/locale/fr/LC_MESSAGES/neutron.po
neutron/locale/gl/LC_MESSAGES/neutron.po
neutron/locale/hi/LC_MESSAGES/neutron.po
neutron/locale/hr/LC_MESSAGES/neutron.po
neutron/locale/hu/LC_MESSAGES/neutron.po
neutron/locale/id/LC_MESSAGES/neutron.po
neutron/locale/is_IS/LC_MESSAGES/neutron.po
neutron/locale/it/LC_MESSAGES/neutron.po
neutron/locale/it_IT/LC_MESSAGES/neutron.po
neutron/locale/ja/LC_MESSAGES/neutron.po
neutron/locale/ka_GE/LC_MESSAGES/neutron.po
neutron/locale/km/LC_MESSAGES/neutron.po
neutron/locale/kn/LC_MESSAGES/neutron.po
neutron/locale/ko/LC_MESSAGES/neutron.po
neutron/locale/ko_KR/LC_MESSAGES/neutron.po
neutron/locale/ml_IN/LC_MESSAGES/neutron.po
neutron/locale/mr_IN/LC_MESSAGES/neutron.po
neutron/locale/ms/LC_MESSAGES/neutron.po
neutron/locale/nb/LC_MESSAGES/neutron.po
neutron/locale/ne/LC_MESSAGES/neutron.po
neutron/locale/neutron.pot
neutron/locale/nl_NL/LC_MESSAGES/neutron.po
neutron/locale/pa_IN/LC_MESSAGES/neutron.po
neutron/locale/pl_PL/LC_MESSAGES/neutron.po
neutron/locale/pt/LC_MESSAGES/neutron.po
neutron/locale/pt_BR/LC_MESSAGES/neutron.po
neutron/locale/ro/LC_MESSAGES/neutron.po
neutron/locale/ru/LC_MESSAGES/neutron.po
neutron/locale/ru_RU/LC_MESSAGES/neutron.po
neutron/locale/sk/LC_MESSAGES/neutron.po
neutron/locale/sl_SI/LC_MESSAGES/neutron.po
neutron/locale/sv/LC_MESSAGES/neutron.po
neutron/locale/sw_KE/LC_MESSAGES/neutron.po
neutron/locale/tl/LC_MESSAGES/neutron.po
neutron/locale/tl_PH/LC_MESSAGES/neutron.po
neutron/locale/tr_TR/LC_MESSAGES/neutron.po
neutron/locale/uk/LC_MESSAGES/neutron.po
neutron/locale/ur/LC_MESSAGES/neutron.po
neutron/locale/vi_VN/LC_MESSAGES/neutron.po
neutron/locale/zh_CN/LC_MESSAGES/neutron.po
neutron/locale/zh_HK/LC_MESSAGES/neutron.po
neutron/locale/zh_TW/LC_MESSAGES/neutron.po
neutron/plugins/bigswitch/plugin.py
neutron/plugins/ml2/drivers/mech_agent.py
neutron/plugins/nec/db/api.py
neutron/plugins/nec/drivers/pfc.py
neutron/plugins/nec/nec_plugin.py
neutron/plugins/vmware/dbexts/networkgw_db.py
neutron/plugins/vmware/extensions/nvp_networkgw.py [deleted file]
neutron/tests/unit/cisco/test_network_plugin.py
neutron/tests/unit/db/vpn/test_db_vpnaas.py
neutron/tests/unit/hyperv/test_hyperv_utilsv2.py
neutron/tests/unit/nec/test_nec_plugin.py
neutron/tests/unit/nec/test_packet_filter.py
neutron/tests/unit/test_linux_dhcp.py

index 9fbc5753ea7dd48473472da1c6a519ab89114947..e650c00318d049f79320af5bcb97f43c59b6340e 100644 (file)
@@ -507,27 +507,6 @@ class Dnsmasq(DhcpLocalProcess):
         utils.replace_file(addn_hosts, buf.getvalue())
         return addn_hosts
 
-    def _read_hosts_file_leases(self, filename):
-        leases = set()
-        if os.path.exists(filename):
-            with open(filename) as f:
-                for l in f.readlines():
-                    host = l.strip().split(',')
-                    leases.add((host[2], host[0]))
-        return leases
-
-    def _release_unused_leases(self):
-        filename = self.get_conf_file_name('host')
-        old_leases = self._read_hosts_file_leases(filename)
-
-        new_leases = set()
-        for port in self.network.ports:
-            for alloc in port.fixed_ips:
-                new_leases.add((alloc.ip_address, port.mac_address))
-
-        for ip, mac in old_leases - new_leases:
-            self._release_lease(mac, ip)
-
     def _output_opts_file(self):
         """Write a dnsmasq compatible options file."""
 
index 66a6ffca979d7f527c2aebc6e03a8f1f79c11230..ac8d02b05ca3f51ea8bac0af103045fbe702df95 100644 (file)
@@ -1270,7 +1270,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3880,21 +3880,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4233,45 +4218,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11370,10 +11316,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11457,14 +11399,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index be385eb0b0923ee95edcccd59fbaef8f209eccc8..a1628f4f7bfed92f19b757ef13703353dfd1e83f 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 697de866e800540da8e15005804fea0e4ae70bcc..893a3c7a3497128103a0cb0161720e2e8b68a79f 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 5f8297785e108aec7887ff591fbe82e826e88a90..4e7215bfd7db4131c55e72452536be7cb302d63a 100644 (file)
@@ -1270,7 +1270,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3880,21 +3880,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4233,45 +4218,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11370,10 +11316,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11457,14 +11399,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index fea9d5c07d2f20e87908023ccf14c04e4946bca9..f7d44ea713c1bf2b25eef1fb4a6bc03268060f06 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 861a14c4d5d8f51a185bfa7b9b96d4d4c8bdb546..a620868ca0458fa6b7b3bb865db2432396e36b7e 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index af66aec0e77e96f6a8bb0d37d1420b724a979b75..31272e27700e48a875c50fd0fbcd9b0e519818b5 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 4766b281e31ea00ed967cdb9851826e2dbe07cbc..94ae45c50b66f87ff3b1f544c0f1bc8f0325d465 100644 (file)
@@ -4067,21 +4067,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4420,45 +4405,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -5231,8 +5177,6 @@ msgstr ""
 #, python-format
 msgid "Updating router rules to %s"
 msgstr ""
-"In dieser Plug-in-Version wird das Einstellen von 'admin_state_up=False' "
-"nicht unterstützt. Einstellungen werden ignoriert für Ressource: %s"
 
 #: neutron/plugins/bigswitch/servermanager.py:77
 #, python-format
@@ -5242,8 +5186,6 @@ msgstr ""
 #: neutron/plugins/bigswitch/servermanager.py:116
 msgid "Couldn't retrieve capabilities. Newer API calls won't be supported."
 msgstr ""
-"Der Betriebsstatus wird intern vom Plug-in eingestellt. Die Einstellung "
-"'status=%s' wird ignoriert."
 
 #: neutron/plugins/bigswitch/servermanager.py:118
 #, python-format
@@ -5469,153 +5411,6 @@ msgstr ""
 msgid "Consistency hash for group %(hash_id)s updated to %(hash)s"
 msgstr ""
 
-#: neutron/plugins/bigswitch/servermanager.py:196
-msgid "ServerPool: initialization done"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:239
-#, python-format
-msgid "Received an empty port ID for host_id '%s'"
-msgstr ""
-
-#: neutron/plugins/bigswitch/db/porttracker_db.py:42
-#, python-format
-msgid "Received an empty host_id for port '%s'"
-msgstr ""
-
-#: neutron/plugins/bigswitch/db/porttracker_db.py:44
-#, python-format
-msgid "Logging port %(port)s on host_id %(host)s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:245
-#, python-format
-msgid ""
-"ServerProxy: Error details: status=%(status)d, reason=%(reason)r, "
-"ret=%(ret)s, data=%(data)r"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:252
-#, python-format
-msgid "ServerProxy: %(action)s failure for all servers: %(server)r"
-msgstr "ServerProxy: Fehler bei %(action)s für alle Server: %(server)r"
-
-#: neutron/plugins/bigswitch/servermanager.py:274
-#, python-format
-msgid ""
-"NeutronRestProxyV2: Received and ignored error code %(code)s on "
-"%(action)s action to resource %(resource)s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:284
-#, python-format
-msgid "Unable to create remote router: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:290
-#, python-format
-msgid "Unable to update remote router: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:295
-#, python-format
-msgid "Unable to delete remote router: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:301
-#, python-format
-msgid "Unable to add router interface: %s"
-msgstr ""
-
-#: neutron/plugins/brocade/NeutronPlugin.py:66
-#: neutron/plugins/ml2/drivers/brocade/mechanism_brocade.py:33
-msgid "The address of the host to SSH to"
-msgstr ""
-
-#: neutron/plugins/brocade/NeutronPlugin.py:68
-#: neutron/plugins/ml2/drivers/brocade/mechanism_brocade.py:35
-msgid "The SSH username to use"
-msgstr ""
-
-#: neutron/plugins/brocade/NeutronPlugin.py:70
-#: neutron/plugins/ml2/drivers/brocade/mechanism_brocade.py:37
-msgid "The SSH password to use"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:332
-#, python-format
-msgid "No device MAC attached to port %s. Skipping notification to controller."
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:337
-#, python-format
-msgid "Unable to create remote port: %s"
-msgstr ""
-
-#: neutron/plugins/brocade/NeutronPlugin.py:134
-#: neutron/plugins/hyperv/rpc_callbacks.py:55
-#: neutron/plugins/linuxbridge/lb_neutron_plugin.py:89
-#: neutron/plugins/mlnx/rpc_callbacks.py:76
-#: neutron/plugins/openvswitch/ovs_neutron_plugin.py:96
-#, python-format
-msgid "Unable to delete remote port: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:352
-#, python-format
-msgid "Unable to create floating IP: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:357
-#, python-format
-msgid "Unable to update floating IP: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:362
-#, python-format
-msgid "Unable to delete floating IP: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/agent/restproxy_agent.py:113
-#: neutron/plugins/ryu/agent/ryu_neutron_agent.py:236
-msgid "Port update received"
-msgstr ""
-
-#: neutron/plugins/bigswitch/agent/restproxy_agent.py:117
-#, python-format
-msgid "Port %s is not present on this host."
-msgstr ""
-
-#: neutron/plugins/bigswitch/agent/restproxy_agent.py:120
-#, python-format
-msgid "Port %s found. Refreshing firewall."
-msgstr ""
-
-#: neutron/plugins/bigswitch/agent/restproxy_agent.py:148
-#: neutron/plugins/ryu/agent/ryu_neutron_agent.py:269
-msgid "Agent loop has new device"
-msgstr "Agentenschleife umfasst ein neues Gerät"
-
-#: neutron/plugins/bigswitch/agent/restproxy_agent.py:152
-#: neutron/plugins/mlnx/agent/eswitch_neutron_agent.py:401
-#: neutron/plugins/nec/agent/nec_neutron_agent.py:222
-#: neutron/plugins/ofagent/agent/ofa_neutron_agent.py:1313
-#: neutron/plugins/ryu/agent/ryu_neutron_agent.py:273
-msgid "Error in agent event loop"
-msgstr "Fehler in Agentenereignisschleife"
-
-#: neutron/plugins/bigswitch/agent/restproxy_agent.py:158
-#: neutron/plugins/ibm/agent/sdnve_neutron_agent.py:201
-#: neutron/plugins/linuxbridge/agent/linuxbridge_neutron_agent.py:975
-#: neutron/plugins/ofagent/agent/ofa_neutron_agent.py:1328
-#: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1236
-#: neutron/plugins/ryu/agent/ryu_neutron_agent.py:279
-#, python-format
-msgid "Loop iteration exceeded interval (%(polling_interval)s vs. %(elapsed)s)!"
-msgstr ""
-"Schleifeniteration hat Intervall (%(polling_interval)s contra "
-"%(elapsed)s) überschritten!"
-
 #: neutron/plugins/bigswitch/db/porttracker_db.py:36
 msgid "No host_id in port request to track port location."
 msgstr ""
@@ -5668,14 +5463,17 @@ msgid "Duplicate router rules (src,dst)  found '%s'"
 msgstr ""
 
 #: neutron/plugins/brocade/NeutronPlugin.py:66
+#: neutron/plugins/ml2/drivers/brocade/mechanism_brocade.py:33
 msgid "The address of the host to SSH to"
 msgstr ""
 
 #: neutron/plugins/brocade/NeutronPlugin.py:68
+#: neutron/plugins/ml2/drivers/brocade/mechanism_brocade.py:35
 msgid "The SSH username to use"
 msgstr ""
 
 #: neutron/plugins/brocade/NeutronPlugin.py:70
+#: neutron/plugins/ml2/drivers/brocade/mechanism_brocade.py:37
 msgid "The SSH password to use"
 msgstr ""
 
@@ -9463,8 +9261,6 @@ msgstr ""
 #, python-format
 msgid "ODL-----> sending JSON (%s) <-----ODL"
 msgstr ""
-"Erstellung von Teilschnittstelle %(interface)s für VLAN %(vlan_id)s auf "
-"Schnittstelle %(physical_interface)s"
 
 #: neutron/plugins/ml2/drivers/mechanism_odl.py:339
 #, python-format
@@ -9528,15 +9324,11 @@ msgid ""
 "Comma-separated list of <tun_min>:<tun_max> tuples enumerating ranges of "
 "GRE tunnel IDs that are available for tenant network allocation"
 msgstr ""
-"Starten von Brücke %(bridge_name)s für Teilschnittstelle %(interface)s "
-"abgeschlossen"
 
 #: neutron/plugins/ml2/drivers/type_gre.py:85
 #, python-format
 msgid "Reserving specific gre tunnel %s from pool"
 msgstr ""
-"Hinzufügen von %(interface)s zu %(bridge_name)s nicht möglich! Ausnahme: "
-"%(e)s"
 
 #: neutron/plugins/ml2/drivers/type_gre.py:89
 #, python-format
@@ -9603,15 +9395,11 @@ msgstr ""
 #, python-format
 msgid "Invalid tunnel ID range: '%(range)s' - %(e)s. Agent terminated!"
 msgstr ""
-"Entfernen von Einheit %(interface_name)s von Brücke %(bridge_name)s "
-"abgeschlossen"
 
 #: neutron/plugins/ml2/drivers/type_tunnel.py:65
 #, python-format
 msgid "%(type)s ID ranges: %(range)s"
 msgstr ""
-"Einheit %(interface_name)s kann nicht von Brücke %(bridge_name)s entfernt"
-" werden, da nicht vorhanden"
 
 #: neutron/plugins/ml2/drivers/type_tunnel.py:71
 #: neutron/plugins/openvswitch/ovs_neutron_plugin.py:430
@@ -11598,8 +11386,6 @@ msgstr ""
 #, python-format
 msgid "Network %(id)s created under tenant %(tenant_id)s"
 msgstr ""
-"Bereitstellung von VLAN-Netz für net-id=%(net_uuid)s nicht möglich - "
-"keine Brücke für 'physical_network' %(physical_network)s"
 
 #: neutron/plugins/oneconvergence/lib/nvsdlib.py:126
 #, python-format
@@ -11630,8 +11416,6 @@ msgstr ""
 #, python-format
 msgid "Port %(id)s created under tenant %(tenant_id)s"
 msgstr ""
-"Brücke %(bridge)s für physisches Netz %(physical_network)s ist nicht "
-"vorhanden. Agent beendet!"
 
 #: neutron/plugins/oneconvergence/lib/nvsdlib.py:246
 #, python-format
@@ -11734,33 +11518,6 @@ msgstr ""
 #, python-format
 msgid "%s"
 msgstr ""
-"Unverhältnismäßiger Tunnel-ID-Bereich %(tun_min)s:%(tun_max)s wird "
-"übersprungen"
-
-#: neutron/plugins/openvswitch/ovs_db_v2.py:257
-#, python-format
-msgid "Reserving tunnel %s from pool"
-msgstr "Reservieren von Tunnel %s aus Pool"
-
-#: neutron/plugins/openvswitch/ovs_db_v2.py:272
-#, python-format
-msgid "Reserving specific tunnel %s from pool"
-msgstr "Reservieren eines bestimmten Tunnels %s aus Pool"
-
-#: neutron/plugins/openvswitch/ovs_db_v2.py:275
-#, python-format
-msgid "Reserving specific tunnel %s outside pool"
-msgstr "Reservieren eines bestimmten Tunnels %s außerhalb des Pools"
-
-#: neutron/plugins/openvswitch/ovs_db_v2.py:298
-#, python-format
-msgid "Releasing tunnel %s outside pool"
-msgstr "Freigabe von Tunnel %s außerhalb des Pools"
-
-#: neutron/plugins/openvswitch/ovs_db_v2.py:300
-#, python-format
-msgid "Releasing tunnel %s to pool"
-msgstr "Freigabe von Tunnel %s an Pool"
 
 #: neutron/plugins/oneconvergence/lib/plugin_helper.py:161
 #, python-format
@@ -12219,8 +11976,6 @@ msgstr ""
 #: neutron/plugins/plumgrid/plumgrid_plugin/plumgrid_plugin.py:522
 msgid "Neutron PLUMgrid Director: delete_floatingip() called"
 msgstr ""
-"Netze, für die 'admin_state_up=False' gilt, werden von diesem Plug-in "
-"noch nicht unterstützt. Einstellungen für Netz %s werden ignoriert"
 
 #: neutron/plugins/plumgrid/plumgrid_plugin/plumgrid_plugin.py:535
 msgid "PLUMgrid Library: delete_floatingip() called"
@@ -12480,63 +12235,6 @@ msgstr ""
 "%(method)s an %(url)s, unerwarteter Antwortcode: %(status)d (Inhalt = "
 "'%(body)s')"
 
-#: neutron/plugins/vmware/api_client/base.py:148
-#, python-format
-msgid "[%(rid)d] Connection returned in bad state, reconnecting to %(conn)s"
-msgstr ""
-
-#: neutron/plugins/vmware/api_client/base.py:173
-#, python-format
-msgid "Login error \"%s\""
-msgstr ""
-
-#: neutron/plugins/vmware/api_client/base.py:183
-#, python-format
-msgid "Saving new authentication cookie '%s'"
-msgstr "Speichern von neuem Authentifizierungscookie '%s'"
-
-#: neutron/plugins/vmware/api_client/base.py:194
-msgid "Waiting for auth to complete"
-msgstr "Warten auf Abschluss von Authentifizierung"
-
-#: neutron/plugins/vmware/api_client/base.py:236
-#, python-format
-msgid "[%d] Request timeout."
-msgstr "[%d] Anforderungs-Zeitlimitüberschreitung."
-
-#: neutron/plugins/vmware/api_client/eventlet_request.py:123
-msgid "Request timeout"
-msgstr "Anforderungs-Zeitlimitüberschreitung"
-
-#: neutron/plugins/vmware/api_client/client.py:93
-#, python-format
-msgid "Request returns \"%s\""
-msgstr ""
-
-#: neutron/plugins/vmware/api_client/client.py:106
-#, python-format
-msgid "Request timed out: %(method)s to %(url)s"
-msgstr "Anforderung hat zulässiges Zeitlimit überschritten: %(method)s an %(url)s"
-
-#: neutron/plugins/vmware/api_client/client.py:117
-#, python-format
-msgid "Received error code: %s"
-msgstr "Empfangener Fehlercode: %s"
-
-#: neutron/plugins/vmware/api_client/client.py:118
-#, python-format
-msgid "Server Error Message: %s"
-msgstr "Serverfehlernachricht: %s"
-
-#: neutron/plugins/vmware/api_client/client.py:124
-#, python-format
-msgid ""
-"%(method)s to %(url)s, unexpected response code: %(status)d (content = "
-"'%(body)s')"
-msgstr ""
-"%(method)s an %(url)s, unerwarteter Antwortcode: %(status)d (Inhalt = "
-"'%(body)s')"
-
 #: neutron/plugins/vmware/api_client/client.py:141
 msgid "Unable to determine NSX version. Plugin might not work as expected."
 msgstr ""
@@ -12548,8 +12246,8 @@ msgstr ""
 
 #: neutron/plugins/vmware/api_client/eventlet_client.py:149
 #, python-format
-msgid "[%(rid)d] Error while handling request: %(req)s"
-msgstr "[%(rid)d] Fehler bei Verarbeitung von Anforderung: %(req)s"
+msgid "Saving new authentication cookie '%s'"
+msgstr "Speichern von neuem Authentifizierungscookie '%s'"
 
 #: neutron/plugins/vmware/api_client/eventlet_request.py:102
 msgid "Joining an invalid green thread"
@@ -13301,7 +12999,7 @@ msgstr ""
 
 #: neutron/plugins/vmware/dbexts/nsxrouter.py:61
 #, python-format
-msgid "DSCP value (%s) will be ignored with 'trusted' marking"
+msgid "Nsx router extension successfully processed for router:%s"
 msgstr ""
 
 #: neutron/plugins/vmware/dbexts/qos_db.py:286
@@ -13949,8 +13647,6 @@ msgstr ""
 #: neutron/plugins/vmware/plugins/base.py:1776
 msgid "Unable to update logical routeron NSX Platform"
 msgstr ""
-"Ausnahme wird ignoriert, da dies bedeutet, dass der Peer für Port '%s' "
-"bereits gelöscht wurde."
 
 #: neutron/plugins/vmware/plugins/base.py:674
 #, python-format
@@ -13958,8 +13654,6 @@ msgid ""
 "_nsx_delete_ext_gw_port completed on external network %(ext_net_id)s, "
 "attached to NSX router:%(router_id)s"
 msgstr ""
-"Die Erstellung von Routerschnittstellenports in externen Netzen wie %s "
-"ist nicht zulässig"
 
 #: neutron/plugins/vmware/plugins/base.py:716
 #, python-format
@@ -14046,8 +13740,6 @@ msgstr ""
 #: neutron/plugins/vmware/plugins/base.py:1189
 msgid "Unable to create port or set port attachment in NSX."
 msgstr ""
-"Netze, für die 'admin_state_up=False' gilt, werden von diesem Plug-in "
-"noch nicht unterstützt. Einstellungen für Netz %s werden ignoriert"
 
 #: neutron/plugins/vmware/plugins/base.py:1281
 #, python-format
@@ -14195,8 +13887,6 @@ msgstr ""
 #, python-format
 msgid "Unable to update name on NSX backend for network gateway: %s"
 msgstr ""
-"'Add_router_interface' für Teilnetz: %(subnet_id)s und Router: "
-"%(router_id)s abgeschlossen"
 
 #: neutron/plugins/vmware/plugins/base.py:2130
 #: neutron/plugins/vmware/plugins/base.py:2176
@@ -15538,22 +15228,22 @@ msgstr ""
 msgid "Pool %(pool_id)s is scheduled to lbaas agent %(agent_id)s"
 msgstr ""
 
-#: neutron/services/loadbalancer/plugin.py:81
+#: neutron/services/loadbalancer/plugin.py:82
 #, python-format
 msgid "Delete associated loadbalancer pools before removing providers %s"
 msgstr ""
 
-#: neutron/services/loadbalancer/plugin.py:90
+#: neutron/services/loadbalancer/plugin.py:91
 #, python-format
 msgid "Error retrieving driver for provider %s"
 msgstr ""
 
-#: neutron/services/loadbalancer/plugin.py:98
+#: neutron/services/loadbalancer/plugin.py:99
 #, python-format
 msgid "Error retrieving provider for pool %s"
 msgstr ""
 
-#: neutron/services/loadbalancer/plugin.py:181
+#: neutron/services/loadbalancer/plugin.py:190
 #, python-format
 msgid "Failed to delete pool %s, putting it in ERROR state"
 msgstr ""
@@ -15581,208 +15271,6 @@ msgstr "Fehler beim Importieren von Lastverteilungstreiber: %s"
 msgid "Multiple device drivers with the same name found: %s"
 msgstr ""
 
-#: neutron/services/loadbalancer/agent/agent_manager.py:141
-msgid "Error upating stats"
-msgstr "Fehler beim Aktualisieren der Statistiken"
-
-#: neutron/services/loadbalancer/agent/agent_manager.py:156
-msgid "Unable to retrieve ready devices"
-msgstr "Abrufen von bereiten Einheiten nicht möglich"
-
-#: neutron/services/loadbalancer/agent/agent_manager.py:173
-#: neutron/services/loadbalancer/agent/agent_manager.py:238
-#, python-format
-msgid "No device driver on agent: %s."
-msgstr ""
-
-#: neutron/services/loadbalancer/agent/agent_manager.py:183
-#, python-format
-msgid "Unable to deploy instance for pool: %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/agent/agent_manager.py:193
-#, python-format
-msgid "Unable to destroy device for pool: %s"
-msgstr "Einheit für Pool kann nicht gelöscht werden: %s"
-
-#: neutron/services/loadbalancer/agent/agent_manager.py:206
-#, python-format
-msgid "%(operation)s %(obj)s %(id)s failed on device driver %(driver)s"
-msgstr ""
-
-#: neutron/services/loadbalancer/agent/agent_manager.py:332
-#, python-format
-msgid "Destroying pool %s due to agent disabling"
-msgstr ""
-
-#: neutron/services/loadbalancer/agent/agent_manager.py:335
-#, python-format
-msgid "Agent_updated by server side %s!"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/common/agent_driver_base.py:44
-msgid "Driver to use for scheduling pool to a default loadbalancer agent"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/common/agent_driver_base.py:52
-msgid "Device driver for agent should be specified in plugin driver."
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/common/agent_driver_base.py:79
-#, python-format
-msgid "Multiple lbaas agents found on host %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/common/agent_driver_base.py:99
-msgid "Expected active pool"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/common/agent_driver_base.py:161
-#, python-format
-msgid "Unknown object type: %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/common/agent_driver_base.py:172
-#, python-format
-msgid ""
-"Cannot update status: %(obj_type)s %(obj_id)s not found in the DB, it was"
-" probably deleted concurrently"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/common/agent_driver_base.py:195
-#, python-format
-msgid "Unable to find port %s to plug."
-msgstr "Zu verbindender Port %s kann nicht gefunden werden."
-
-#: neutron/services/loadbalancer/drivers/common/agent_driver_base.py:219
-#: neutron/services/loadbalancer/drivers/common/agent_driver_base.py:236
-#, python-format
-msgid ""
-"Unable to find port %s to unplug.  This can occur when the Vip has been "
-"deleted first."
-msgstr ""
-"Zu entfernender Port %s kann nicht gefunden werden. Dies kann auftreten, "
-"wenn die VIP zuerst gelöscht wurde."
-
-#: neutron/services/loadbalancer/drivers/haproxy/namespace_driver.py:48
-msgid "Location to store config and state files"
-msgstr "Position zum Speichern der Konfigurations- und Statusdateien"
-
-#: neutron/services/loadbalancer/drivers/haproxy/namespace_driver.py:54
-msgid "The user group"
-msgstr "Die Benutzergruppe"
-
-#: neutron/services/loadbalancer/drivers/haproxy/namespace_driver.py:70
-#, python-format
-msgid "Error importing interface driver: %s"
-msgstr "Fehler beim Importieren von Schnittstellentreiber: %s"
-
-#: neutron/services/loadbalancer/drivers/haproxy/namespace_driver.py:160
-#, python-format
-msgid "Stats socket not found for pool %s"
-msgstr "Statistiksocket für Pool nicht gefunden: %s"
-
-#: neutron/services/loadbalancer/drivers/haproxy/namespace_driver.py:202
-#, python-format
-msgid "Error while connecting to stats socket: %s"
-msgstr "Fehler beim Versuch, mit Statistiksocket zu verbinden: %s"
-
-#: neutron/services/loadbalancer/drivers/haproxy/namespace_driver.py:348
-#, python-format
-msgid "Unable to kill haproxy process: %s"
-msgstr "HAProxy-Prozess kann nicht beendet werden: %s"
-
-#: neutron/services/loadbalancer/drivers/netscaler/ncc_client.py:43
-#, python-format
-msgid "NCC Error %d"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/netscaler/ncc_client.py:54
-msgid "No NetScaler Control Center URI specified. Cannot connect."
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/netscaler/ncc_client.py:133
-#, python-format
-msgid "Connection error occurred while connecting to %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/netscaler/ncc_client.py:138
-#, python-format
-msgid "SSL error occurred while connecting to %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/netscaler/ncc_client.py:143
-#, python-format
-msgid "Request to %s timed out"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/netscaler/ncc_client.py:150
-msgid "Request did not specify a valid URL"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/netscaler/ncc_client.py:154
-#, python-format
-msgid "Too many redirects occurred for request to %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/netscaler/ncc_client.py:158
-#, python-format
-msgid "A request error while connecting to %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/netscaler/ncc_client.py:163
-#, python-format
-msgid "A unknown error occurred during request to %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/netscaler/ncc_client.py:168
-#, python-format
-msgid "Response: %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/plugin.py:82
-#, python-format
-msgid "Unable to login. Invalid credentials passed.for: %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/plugin.py:91
-#, python-format
-msgid "Failed %(method)s operation on %(url)s status code: %(response_status)s"
-msgstr ""
-
-#: neutron/services/loadbalancer/plugin.py:99
-#, python-format
-msgid "Error retrieving provider for pool %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/plugin.py:190
-#, python-format
-msgid "Failed to delete pool %s, putting it in ERROR state"
-msgstr ""
-
-#: neutron/services/loadbalancer/agent/agent.py:34
-msgid "Seconds between periodic task runs"
-msgstr "Sekunden zwischen Ausführungen regelmäßig wiederkehrender Tasks"
-
-#: neutron/services/loadbalancer/agent/agent_manager.py:40
-msgid "Drivers used to manage loadbalancing devices"
-msgstr ""
-
-#: neutron/services/loadbalancer/agent/agent_manager.py:46
-#, python-format
-msgid "NetScaler driver vip creation: %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/agent/agent_manager.py:94
-#, python-format
-msgid "NetScaler driver vip %(vip_id)s update: %(vip_obj)s"
-msgstr ""
-
-#: neutron/services/loadbalancer/agent/agent_manager.py:101
-#, python-format
-msgid "NetScaler driver vip removal: %s"
-msgstr ""
-
 #: neutron/services/loadbalancer/agent/agent_manager.py:141
 #, python-format
 msgid "Error updating statistics on pool %s"
@@ -15795,18 +15283,18 @@ msgstr "Abrufen von bereiten Einheiten nicht möglich"
 #: neutron/services/loadbalancer/agent/agent_manager.py:174
 #: neutron/services/loadbalancer/agent/agent_manager.py:239
 #, python-format
-msgid "NetScaler driver pool creation: %s"
+msgid "No device driver on agent: %s."
 msgstr ""
 
 #: neutron/services/loadbalancer/agent/agent_manager.py:184
 #, python-format
-msgid "NetScaler driver pool %(pool_id)s update: %(pool_obj)s"
+msgid "Unable to deploy instance for pool: %s"
 msgstr ""
 
 #: neutron/services/loadbalancer/agent/agent_manager.py:194
 #, python-format
-msgid "NetScaler driver pool removal: %s"
-msgstr ""
+msgid "Unable to destroy device for pool: %s"
+msgstr "Einheit für Pool kann nicht gelöscht werden: %s"
 
 #: neutron/services/loadbalancer/agent/agent_manager.py:207
 #, python-format
index 10c39a19a58f39a0be0b55c184d67e5c68dfb2dc..fbcb0732e9f7f56aae1ab1cd3c6793e2bc12c272 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 65baa3c3f75fa42c280a37f6be180e18bd3cc205..d1d957c4a2158e7ba4c0d4e61a539965369fcde8 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index b39aeada3bd8fb2e9939cf6ac2631e800ff52cb9..a5600f72c83d67ba6104994e8b4a10b866e8b426 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index b8c41f47c0f8470b51f5d243ebf32a73638fe775..ef42bc365a8edb0451ffcd693f0f3e85d85b45c8 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index b347fa7c7396a691d74a505e451a46aa145de297..0306f9c668895c6a312c847d3e4ebf186955b583 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 716e1c0dc17b7f581695c8593ac601a5bdcbcdd8..f3284c0f29ae33b3db998cbb39126428bfd1219d 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index dc03d61a961e54ea53aafa3fe1e50353ea10301e..f45ee749be08d0a55892cb450e897ee493ec4095 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 7282b87f267594120a4c3ba6000c7a6ca5e96fd2..4906a59ddbd12420d0908dbc0ae4c830d3200b9e 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 3caf4aaac830cae7981ff20da65008b15a2d1d97..ae72e13508d031e186c31826592f7677bb31b757 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 8a3b5ca6d7f7e753deeef7582e5a2bf8ee1ef27d..a3c535035827c5f52420c4354fc1b0306a9aaa0b 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 20d61dd8ed1ab29bac2df4a5f4f580b94b86b1b0..0b6a6619f03b8f4e8a039a1a1dfe8ca0513abbdc 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 9af4c5c0235b3890903d2eb9a365a534f345d865..731dd7fad186753966b15212f43351d02508fe1c 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index eff7f841d5481e80fb2e621dc6560232d31292be..b69e2bdd476af9db74b3cc8f3353cec8ce18b811 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 79318827686a46a059c0650743abbd3a21afe46b..68a4174ec9622f5aedecef94fc178b4a16c60588 100644 (file)
@@ -1270,7 +1270,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3880,21 +3880,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4233,45 +4218,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11370,10 +11316,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11457,14 +11399,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 589a22a983da048c36018b3e87acba8f4f34081a..1a5029df9df8760269515ab36f58b8d75402a0e8 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 4e2c4ca67bffa338f7cfc0e4374258ddb9f49386..cf3a4b8b1e41c309a8355363f8f786ad211d9592 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index e38e0f3b0ca8fae3000a6b58ea9bc153f0a25365..28aa4cce23b2a881abb5a88668c92693ac22c489 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 3d67915d62ccc154bc6d949f0de0fa128ba326c8..be2c547b1aecf277483e32c9c86c8f0cb104b696 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 85faa112ac2f1e9f6928e0462ea7a72a9c8611ba..2c404e9ae8b26286991dd292d4f7dbcbd7cf8494 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 7125bd2dc03df8ab25d7b05cccd7fa0c24c227d6..e265e2818d0d4e558d1d0668424d71e096fe4a89 100644 (file)
@@ -1270,7 +1270,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3880,21 +3880,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4233,45 +4218,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11370,10 +11316,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11457,14 +11399,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 0e1557edd13f9a73e0edcbfefe9ce1bbc7ffeab1..0158a4ca95003153eb6fe3dc54630cf1772e48f7 100644 (file)
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4234,29 +4219,29 @@ msgstr ""
 
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
-msgid "Invalid SSL version : %s"
+msgid "%s not in valid priorities"
 msgstr ""
 
-#: neutron/openstack/common/versionutils.py:69
+#: neutron/openstack/common/notifier/api.py:141
 #, python-format
 msgid ""
-"%(what)s is deprecated as of %(as_of)s in favor of %(in_favor_of)s and "
-"may be removed in %(remove_in)s."
+"Problem '%(e)s' attempting to send to notification system. "
+"Payload=%(payload)s"
 msgstr ""
 
-#: neutron/openstack/common/versionutils.py:73
+#: neutron/openstack/common/notifier/api.py:171
 #, python-format
-msgid ""
-"%(what)s is deprecated as of %(as_of)s and may be removed in "
-"%(remove_in)s. It will not be superseded."
+msgid "Failed to load notifier %s. These notifications will not be sent."
 msgstr ""
 
-#: neutron/openstack/common/db/api.py:97
-msgid "DB exceeded retry limit."
+#: neutron/openstack/common/notifier/rabbit_notifier.py:27
+msgid "The rabbit_notifier is now deprecated. Please use rpc_notifier instead."
 msgstr ""
 
-#: neutron/openstack/common/db/api.py:101
-msgid "DB connection error."
+#: neutron/openstack/common/notifier/rpc_notifier.py:45
+#: neutron/openstack/common/notifier/rpc_notifier2.py:51
+#, python-format
+msgid "Could not send notification to %(topic)s. Payload=%(message)s"
 msgstr ""
 
 #: neutron/openstack/common/rpc/__init__.py:103
@@ -5197,194 +5182,6 @@ msgstr ""
 msgid "Consistency hash for group %(hash_id)s updated to %(hash)s"
 msgstr ""
 
-#: neutron/plugins/bigswitch/servermanager.py:115
-#, python-format
-msgid "ServerProxy: server=%(server)s, port=%(port)d, ssl=%(ssl)r"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:118
-#, python-format
-msgid "Received an empty port ID for host_id '%s'"
-msgstr ""
-
-#: neutron/plugins/bigswitch/db/porttracker_db.py:42
-#, python-format
-msgid "Received an empty host_id for port '%s'"
-msgstr ""
-
-#: neutron/plugins/bigswitch/db/porttracker_db.py:44
-#, python-format
-msgid "Logging port %(port)s on host_id %(host)s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:128
-msgid "ServerProxy: Could not establish HTTPS connection"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:135
-msgid "ServerProxy: Could not establish HTTP connection"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:152
-#, python-format
-msgid "ServerProxy: %(action)s failure, %(e)r"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:156
-#, python-format
-msgid ""
-"ServerProxy: status=%(status)d, reason=%(reason)r, ret=%(ret)s, "
-"data=%(data)r"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:168
-msgid "ServerPool: initializing"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:184
-msgid "Servers not defined. Aborting server manager."
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:190
-#, python-format
-msgid "Servers must be defined as <ip>:<port>. Configuration was %s"
-msgstr ""
-
-#: neutron/plugins/brocade/NeutronPlugin.py:66
-#: neutron/plugins/ml2/drivers/brocade/mechanism_brocade.py:33
-msgid "The address of the host to SSH to"
-msgstr ""
-
-#: neutron/plugins/brocade/NeutronPlugin.py:68
-#: neutron/plugins/ml2/drivers/brocade/mechanism_brocade.py:35
-msgid "The SSH username to use"
-msgstr ""
-
-#: neutron/plugins/brocade/NeutronPlugin.py:70
-#: neutron/plugins/ml2/drivers/brocade/mechanism_brocade.py:37
-msgid "The SSH password to use"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:252
-#, python-format
-msgid "ServerProxy: %(action)s failure for all servers: %(server)r"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:274
-#, python-format
-msgid ""
-"NeutronRestProxyV2: Received and ignored error code %(code)s on "
-"%(action)s action to resource %(resource)s"
-msgstr ""
-
-#: neutron/plugins/brocade/NeutronPlugin.py:134
-#: neutron/plugins/hyperv/rpc_callbacks.py:55
-#: neutron/plugins/linuxbridge/lb_neutron_plugin.py:89
-#: neutron/plugins/mlnx/rpc_callbacks.py:76
-#: neutron/plugins/openvswitch/ovs_neutron_plugin.py:96
-#, python-format
-msgid "Unable to create remote router: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:290
-#, python-format
-msgid "Unable to update remote router: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:295
-#, python-format
-msgid "Unable to delete remote router: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:301
-#, python-format
-msgid "Unable to add router interface: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:306
-#, python-format
-msgid "Unable to delete remote intf: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:312
-#, python-format
-msgid "Unable to create remote network: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:318
-#: neutron/plugins/bigswitch/servermanager.py:323
-#, python-format
-msgid "Unable to update remote network: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:332
-#, python-format
-msgid "No device MAC attached to port %s. Skipping notification to controller."
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:337
-#, python-format
-msgid "Unable to create remote port: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:342
-#, python-format
-msgid "Unable to delete remote port: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:352
-#, python-format
-msgid "Unable to create floating IP: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:357
-#, python-format
-msgid "Unable to update floating IP: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:362
-#, python-format
-msgid "Unable to delete floating IP: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/agent/restproxy_agent.py:113
-#: neutron/plugins/ryu/agent/ryu_neutron_agent.py:236
-msgid "Port update received"
-msgstr ""
-
-#: neutron/plugins/bigswitch/agent/restproxy_agent.py:117
-#, python-format
-msgid "Port %s is not present on this host."
-msgstr ""
-
-#: neutron/plugins/bigswitch/agent/restproxy_agent.py:120
-#, python-format
-msgid "Port %s found. Refreshing firewall."
-msgstr ""
-
-#: neutron/plugins/bigswitch/agent/restproxy_agent.py:148
-#: neutron/plugins/ryu/agent/ryu_neutron_agent.py:269
-msgid "Agent loop has new device"
-msgstr ""
-
-#: neutron/plugins/bigswitch/agent/restproxy_agent.py:152
-#: neutron/plugins/mlnx/agent/eswitch_neutron_agent.py:401
-#: neutron/plugins/nec/agent/nec_neutron_agent.py:222
-#: neutron/plugins/ofagent/agent/ofa_neutron_agent.py:1313
-#: neutron/plugins/ryu/agent/ryu_neutron_agent.py:273
-msgid "Error in agent event loop"
-msgstr ""
-
-#: neutron/plugins/bigswitch/agent/restproxy_agent.py:158
-#: neutron/plugins/ibm/agent/sdnve_neutron_agent.py:201
-#: neutron/plugins/linuxbridge/agent/linuxbridge_neutron_agent.py:975
-#: neutron/plugins/ofagent/agent/ofa_neutron_agent.py:1328
-#: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1236
-#: neutron/plugins/ryu/agent/ryu_neutron_agent.py:279
-#, python-format
-msgid "Loop iteration exceeded interval (%(polling_interval)s vs. %(elapsed)s)!"
-msgstr ""
-
 #: neutron/plugins/bigswitch/db/porttracker_db.py:36
 msgid "No host_id in port request to track port location."
 msgstr ""
@@ -5437,14 +5234,17 @@ msgid "Duplicate router rules (src,dst)  found '%s'"
 msgstr ""
 
 #: neutron/plugins/brocade/NeutronPlugin.py:66
+#: neutron/plugins/ml2/drivers/brocade/mechanism_brocade.py:33
 msgid "The address of the host to SSH to"
 msgstr ""
 
 #: neutron/plugins/brocade/NeutronPlugin.py:68
+#: neutron/plugins/ml2/drivers/brocade/mechanism_brocade.py:35
 msgid "The SSH username to use"
 msgstr ""
 
 #: neutron/plugins/brocade/NeutronPlugin.py:70
+#: neutron/plugins/ml2/drivers/brocade/mechanism_brocade.py:37
 msgid "The SSH password to use"
 msgstr ""
 
@@ -11592,10 +11392,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1242
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d -ancillary port info retrieved. "
 "Elapsed:%(elapsed).3f"
index d81bc23ded5b34464bf399117cd214a10b7fcf74..961e9f3f99b7703bed851ec0188ecfbfa2433853 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 0dedd532cf370029aa3f3de7f3a10b0756d1c446..4707ed3c846302015bec0f7baf22a5da0f0d5553 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index bcf431efe80edcca705a92097d4043f535a9bc40..02251b7436716f57991d55bedefd3d32dc8c1e07 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 6d2b814d03f77ed8b5c1e76a7815ab887de768ee..8fdcfbf39ebf2edcb411eda90c851089e0c7e09a 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4178,7 +4163,7 @@ msgstr ""
 
 #: neutron/openstack/common/db/sqlalchemy/session.py:804
 #, python-format
-msgid "Unable to find ca_file : %s"
+msgid "SQL connection failed. %s attempts left."
 msgstr ""
 
 #: neutron/openstack/common/db/sqlalchemy/utils.py:57
@@ -4234,28 +4219,29 @@ msgstr ""
 
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
-msgid ""
-"%(what)s is deprecated as of %(as_of)s in favor of %(in_favor_of)s and "
-"may be removed in %(remove_in)s."
+msgid "%s not in valid priorities"
 msgstr ""
 
-#: neutron/openstack/common/versionutils.py:73
+#: neutron/openstack/common/notifier/api.py:141
 #, python-format
 msgid ""
-"%(what)s is deprecated as of %(as_of)s and may be removed in "
-"%(remove_in)s. It will not be superseded."
+"Problem '%(e)s' attempting to send to notification system. "
+"Payload=%(payload)s"
 msgstr ""
 
-#: neutron/openstack/common/db/api.py:97
-msgid "DB exceeded retry limit."
+#: neutron/openstack/common/notifier/api.py:171
+#, python-format
+msgid "Failed to load notifier %s. These notifications will not be sent."
 msgstr ""
 
-#: neutron/openstack/common/db/api.py:101
-msgid "DB connection error."
+#: neutron/openstack/common/notifier/rabbit_notifier.py:27
+msgid "The rabbit_notifier is now deprecated. Please use rpc_notifier instead."
 msgstr ""
 
-#: neutron/openstack/common/db/exception.py:44
-msgid "Invalid Parameter: Unicode is not supported by the current database."
+#: neutron/openstack/common/notifier/rpc_notifier.py:45
+#: neutron/openstack/common/notifier/rpc_notifier2.py:51
+#, python-format
+msgid "Could not send notification to %(topic)s. Payload=%(message)s"
 msgstr ""
 
 #: neutron/openstack/common/rpc/__init__.py:103
@@ -5196,193 +5182,6 @@ msgstr ""
 msgid "Consistency hash for group %(hash_id)s updated to %(hash)s"
 msgstr ""
 
-#: neutron/plugins/bigswitch/servermanager.py:115
-#, python-format
-msgid "ServerProxy: server=%(server)s, port=%(port)d, ssl=%(ssl)r"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:118
-#, python-format
-msgid "Received an empty port ID for host_id '%s'"
-msgstr ""
-
-#: neutron/plugins/bigswitch/db/porttracker_db.py:42
-#, python-format
-msgid "Received an empty host_id for port '%s'"
-msgstr ""
-
-#: neutron/plugins/bigswitch/db/porttracker_db.py:44
-#, python-format
-msgid "Logging port %(port)s on host_id %(host)s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:128
-msgid "ServerProxy: Could not establish HTTPS connection"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:135
-msgid "ServerProxy: Could not establish HTTP connection"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:152
-#, python-format
-msgid "ServerProxy: %(action)s failure, %(e)r"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:156
-#, python-format
-msgid ""
-"ServerProxy: status=%(status)d, reason=%(reason)r, ret=%(ret)s, "
-"data=%(data)r"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:168
-msgid "ServerPool: initializing"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:184
-msgid "Servers not defined. Aborting server manager."
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:190
-#, python-format
-msgid "Servers must be defined as <ip>:<port>. Configuration was %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:196
-msgid "ServerPool: initialization done"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:239
-#, python-format
-msgid ""
-"ServerProxy: %(action)s failure for servers: %(server)r Response: "
-"%(response)s"
-msgstr ""
-
-#: neutron/plugins/brocade/NeutronPlugin.py:66
-#: neutron/plugins/ml2/drivers/brocade/mechanism_brocade.py:33
-msgid "The address of the host to SSH to"
-msgstr ""
-
-#: neutron/plugins/brocade/NeutronPlugin.py:68
-#: neutron/plugins/ml2/drivers/brocade/mechanism_brocade.py:35
-msgid "The SSH username to use"
-msgstr ""
-
-#: neutron/plugins/brocade/NeutronPlugin.py:70
-#: neutron/plugins/ml2/drivers/brocade/mechanism_brocade.py:37
-msgid "The SSH password to use"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:284
-#, python-format
-msgid "Unable to create remote router: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:290
-#, python-format
-msgid "Unable to update remote router: %s"
-msgstr ""
-
-#: neutron/plugins/brocade/NeutronPlugin.py:134
-#: neutron/plugins/hyperv/rpc_callbacks.py:55
-#: neutron/plugins/linuxbridge/lb_neutron_plugin.py:89
-#: neutron/plugins/mlnx/rpc_callbacks.py:76
-#: neutron/plugins/openvswitch/ovs_neutron_plugin.py:96
-#, python-format
-msgid "Unable to delete remote router: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:301
-#, python-format
-msgid "Unable to add router interface: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:306
-#, python-format
-msgid "Unable to delete remote intf: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:312
-#, python-format
-msgid "Unable to create remote network: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:318
-#: neutron/plugins/bigswitch/servermanager.py:323
-#, python-format
-msgid "Unable to update remote network: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:332
-#, python-format
-msgid "No device MAC attached to port %s. Skipping notification to controller."
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:337
-#, python-format
-msgid "Unable to create remote port: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:342
-#, python-format
-msgid "Unable to delete remote port: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:352
-#, python-format
-msgid "Unable to create floating IP: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:357
-#, python-format
-msgid "Unable to update floating IP: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:362
-#, python-format
-msgid "Unable to delete floating IP: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/agent/restproxy_agent.py:113
-#: neutron/plugins/ryu/agent/ryu_neutron_agent.py:236
-msgid "Port update received"
-msgstr ""
-
-#: neutron/plugins/bigswitch/agent/restproxy_agent.py:117
-#, python-format
-msgid "Port %s is not present on this host."
-msgstr ""
-
-#: neutron/plugins/bigswitch/agent/restproxy_agent.py:120
-#, python-format
-msgid "Port %s found. Refreshing firewall."
-msgstr ""
-
-#: neutron/plugins/bigswitch/agent/restproxy_agent.py:148
-#: neutron/plugins/ryu/agent/ryu_neutron_agent.py:269
-msgid "Agent loop has new device"
-msgstr ""
-
-#: neutron/plugins/bigswitch/agent/restproxy_agent.py:152
-#: neutron/plugins/mlnx/agent/eswitch_neutron_agent.py:401
-#: neutron/plugins/nec/agent/nec_neutron_agent.py:222
-#: neutron/plugins/ofagent/agent/ofa_neutron_agent.py:1313
-#: neutron/plugins/ryu/agent/ryu_neutron_agent.py:273
-msgid "Error in agent event loop"
-msgstr ""
-
-#: neutron/plugins/bigswitch/agent/restproxy_agent.py:158
-#: neutron/plugins/ibm/agent/sdnve_neutron_agent.py:201
-#: neutron/plugins/linuxbridge/agent/linuxbridge_neutron_agent.py:975
-#: neutron/plugins/ofagent/agent/ofa_neutron_agent.py:1328
-#: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1236
-#: neutron/plugins/ryu/agent/ryu_neutron_agent.py:279
-#, python-format
-msgid "Loop iteration exceeded interval (%(polling_interval)s vs. %(elapsed)s)!"
-msgstr ""
-
 #: neutron/plugins/bigswitch/db/porttracker_db.py:36
 msgid "No host_id in port request to track port location."
 msgstr ""
@@ -5435,14 +5234,17 @@ msgid "Duplicate router rules (src,dst)  found '%s'"
 msgstr ""
 
 #: neutron/plugins/brocade/NeutronPlugin.py:66
+#: neutron/plugins/ml2/drivers/brocade/mechanism_brocade.py:33
 msgid "The address of the host to SSH to"
 msgstr ""
 
 #: neutron/plugins/brocade/NeutronPlugin.py:68
+#: neutron/plugins/ml2/drivers/brocade/mechanism_brocade.py:35
 msgid "The SSH username to use"
 msgstr ""
 
 #: neutron/plugins/brocade/NeutronPlugin.py:70
+#: neutron/plugins/ml2/drivers/brocade/mechanism_brocade.py:37
 msgid "The SSH password to use"
 msgstr ""
 
@@ -11452,10 +11254,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/ovs_db_v2.py:391
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Adding a tunnel endpoint failed due to a concurrenttransaction had been "
 "committed (%s attempts left)"
index 34335a31dd03f12a50593461bea73c707e8728e3..9c16feda1ca91e611a1f97e5518e742a5274c5ea 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index ea28ffe8f3561452096707aa28bf177a43f1228c..cf98edc412efdfde235b96f4d52b7a52e6c7a217 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index d6b440947c2792bc0aba627c133bc162f5e4a5f8..0736d0577c45783fa3957343d2cff75fb1ea264e 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 3a02dc61089f0e5e3b34d31b37fb57e80a4c9895..60c82be5ce1065be56d0302100b53f0c4915db7d 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 639e291bd2ac843bd1448c30bab3467fcaa1b2a9..ef42ebbaa74a0da8e8337e2597d4c6245fbbf929 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index f2ed8fdce533f07876c0e8c42551c3c76f8b9229..9381e1b7a73b2cc48ba0d107aba1ed146d7d8635 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -12675,7 +12621,7 @@ msgstr ""
 
 #: neutron/plugins/vmware/dbexts/nsxrouter.py:61
 #, python-format
-msgid "DSCP value (%s) will be ignored with 'trusted' marking"
+msgid "Nsx router extension successfully processed for router:%s"
 msgstr ""
 
 #: neutron/plugins/vmware/dbexts/qos_db.py:286
@@ -13052,10 +12998,6 @@ msgstr ""
 
 #: neutron/plugins/vmware/nsxlib/router.py:605
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "An exception occurred while updating IP addresses on a router logical "
 "port:%s"
@@ -13168,14 +13110,6 @@ msgstr ""
 
 #: neutron/plugins/vmware/plugins/base.py:249
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Unable to create logical router port for neutron port id %(port_id)s on "
 "router %(nsx_router_id)s"
index aabd349dddd0f8fe0a054a4b4260359574113be2..8dd201da993a9287f137946b564edbaef5e80d3b 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index f1690501cad482f08c9bca406b92b7aed30d31d3..c6731d8af08e05013653711869f2df4f212e07ba 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index fb27948f4c8d100e0ac2a3d5043361437b10c5b3..d5f72a11eb8d50ff59a78213fa6c46752fd219d1 100644 (file)
@@ -1270,7 +1270,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3880,21 +3880,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4233,45 +4218,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11370,10 +11316,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11457,14 +11399,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index f29588f6fd7bda26cb7dc4b9f77823d38482fcba..5cd033849850728e727cbfd8b26a1092d5bd8b67 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index ff5ff44d6e64c053d1f8194c796db544d4d30818..7f28167d5f80cb648d837208585472e0e3bc3694 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 7d42c65c541fd1ea8ec0b76f87906883e00e951b..c80df0558937553b936c09ed8f8a568b813ac825 100644 (file)
@@ -1270,7 +1270,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3880,21 +3880,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4233,45 +4218,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11370,10 +11316,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11457,14 +11399,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 3bef03d6418363cea07a03ec79801f755ec11e59..72dee59cc96b7615dce3bee47ccfc518be775921 100644 (file)
@@ -1270,7 +1270,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3880,21 +3880,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4233,45 +4218,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11370,10 +11316,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11457,14 +11399,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 051fcc485b95bc6033cff13f6753015946535026..3d1cd60d1d6b96f5c8321165ce62d491c0419db0 100644 (file)
@@ -1270,7 +1270,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3880,21 +3880,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4233,45 +4218,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11370,10 +11316,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11457,14 +11399,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 89ba68136330a3f619e67a3e08cf222382ea430d..0394abc21f268357d67594c8a4e2d9af0fa73d56 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 913015c9bcbf61244db3cd497ad227bb00d684cf..175a9afc7d0e71bac4afdb0d88b7dfb014cc0c3b 100644 (file)
@@ -1270,7 +1270,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3880,21 +3880,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4233,45 +4218,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11370,10 +11316,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11457,14 +11399,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index d9dcbe45f667043f7b4488255646644725843d8f..055300f0dfeb6b7d8775f2d39abd17638e14a754 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index a18d7898e132052e2370cbfd8c0dba7807b642ad..93f6b5de1875260d60afb83de20a5673895e09e8 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 630e1295132330b19bb9219e08b293312e174c1c..5d6f3a5c61ade04126e9dedb9974d7b9fa2c555b 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index baddbca41a933c84b4d6dd9910c5075794c14d3e..bf2e0efac3eb71bc377fc808fdcd61f4f02bda8e 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 3f331877c0968e440df786f04773216b2ae9981f..443b430a6071b7d6edab175e3de157ae383b5d6f 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 16d82efd5782244fa2884b328c5a3b36ed87a959..bb2aa6838e463cadddc03504bffd0e037c8b52e5 100644 (file)
@@ -1270,7 +1270,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3880,21 +3880,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4233,45 +4218,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11370,10 +11316,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11457,14 +11399,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 00f944ca9d84ae82aa48cba51a3874c109ab4cf8..d72ab1f0f2e6b1cd7eb56779edb44c13c7fd9a1d 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index 29f73172255739fb20db6b1b1f9d44f763911c8d..9dbc34bd05e03fa792ff3ec02657dd3fa47bba7a 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index b85521e933547b01b67b13d4093a57a1782a6ecb..970a83b3eb63aa8e7e6ee1c23c274c991dbb8f83 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index ee26a137965c05a0c73ecb072a628332a6d58280..1b1a9d8310060773da7466bc2ab9147153d477e5 100644 (file)
@@ -1269,7 +1269,7 @@ msgstr ""
 msgid "Found failed openvswitch port: %s"
 msgstr ""
 
-#: neutron/agent/linux/ovs_lib.py:464
+#: neutron/agent/linux/ovs_lib.py:400
 #, python-format
 msgid "Port: %(port_name)s is on %(switch)s, not on %(br_name)s"
 msgstr ""
@@ -3879,21 +3879,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4232,45 +4217,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -11369,10 +11315,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:958
 #, python-format
-msgid "Creating NAT rule: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/router.py:460
 msgid ""
 "Port %s was not found on the integration bridge and will therefore not be"
 " processed"
@@ -11456,14 +11398,6 @@ msgstr ""
 
 #: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1251
 #, python-format
-msgid "Port not found, Error: %s"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:56
-msgid "Operation may not be supported"
-msgstr ""
-
-#: neutron/plugins/vmware/nsxlib/versioning.py:64
 msgid ""
 "Agent rpc_loop - iteration:%(iter_num)d - ancillary ports processed. "
 "Elapsed:%(elapsed).3f"
index b27edc35411d3e5fbe9ebf0d6afc6da557267145..581c3119557cb7f84922b541d8b1aef2412250ac 100644 (file)
@@ -3894,21 +3894,6 @@ msgid ""
 "characters. Please use unicode() or translate() instead."
 msgstr ""
 
-#: neutron/openstack/common/excutils.py:91
-#, python-format
-msgid "Unexpected exception occurred %d time(s)... retrying."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:262
-msgid "Message objects do not support addition."
-msgstr ""
-
-#: neutron/openstack/common/gettextutils.py:271
-msgid ""
-"Message objects do not support str() because they may contain non-ascii "
-"characters. Please use unicode() or translate() instead."
-msgstr ""
-
 #: neutron/openstack/common/lockutils.py:103
 #, python-format
 msgid "Could not release the acquired lock `%s`"
@@ -4247,45 +4232,6 @@ msgstr ""
 msgid "Request is too large."
 msgstr ""
 
-#: neutron/openstack/common/notifier/api.py:125
-#, python-format
-msgid ""
-"Please specify column %s in col_name_col_instance param. It is required "
-"because column has unsupported type by sqlite)."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:199
-#, python-format
-msgid ""
-"col_name_col_instance param has wrong type of column instance for column "
-"%s It should be instance of sqlalchemy.Column."
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:279
-#, python-format
-msgid "Deleting duplicated row with id: %(id)s from table: %(table)s"
-msgstr ""
-
-#: neutron/openstack/common/db/sqlalchemy/utils.py:300
-msgid "Unsupported id columns type"
-msgstr ""
-
-#: neutron/openstack/common/middleware/catch_errors.py:40
-#, python-format
-msgid "An error occurred during processing the request: %s"
-msgstr ""
-
-#: neutron/openstack/common/middleware/notifier.py:40
-#, python-format
-msgid "An exception occurred processing the API call: %s "
-msgstr ""
-
-#: neutron/openstack/common/middleware/sizelimit.py:55
-#: neutron/openstack/common/middleware/sizelimit.py:64
-#: neutron/openstack/common/middleware/sizelimit.py:75
-msgid "Request is too large."
-msgstr ""
-
 #: neutron/openstack/common/notifier/api.py:125
 #, python-format
 msgid "%s not in valid priorities"
@@ -5257,163 +5203,6 @@ msgstr "迴圈反覆運算已超出間隔(%(polling_interval)s 與 %(elapsed)s
 msgid "Consistency hash for group %(hash_id)s updated to %(hash)s"
 msgstr ""
 
-#: neutron/plugins/bigswitch/servermanager.py:196
-msgid "ServerPool: initialization done"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:239
-#, python-format
-msgid "Received an empty port ID for host_id '%s'"
-msgstr ""
-
-#: neutron/plugins/bigswitch/db/porttracker_db.py:42
-#, python-format
-msgid "Received an empty host_id for port '%s'"
-msgstr ""
-
-#: neutron/plugins/bigswitch/db/porttracker_db.py:44
-#, python-format
-msgid "Logging port %(port)s on host_id %(host)s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:245
-#, python-format
-msgid ""
-"ServerProxy: Error details: status=%(status)d, reason=%(reason)r, "
-"ret=%(ret)s, data=%(data)r"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:252
-#, python-format
-msgid "ServerProxy: %(action)s failure for all servers: %(server)r"
-msgstr "ServerProxy:對所有伺服器 %(server)r 執行的 %(action)s 失敗"
-
-#: neutron/plugins/bigswitch/servermanager.py:274
-#, python-format
-msgid ""
-"NeutronRestProxyV2: Received and ignored error code %(code)s on "
-"%(action)s action to resource %(resource)s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:284
-#, python-format
-msgid "Unable to create remote router: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:290
-#, python-format
-msgid "Unable to update remote router: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:295
-#, python-format
-msgid "Unable to delete remote router: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:301
-#, python-format
-msgid "Unable to add router interface: %s"
-msgstr ""
-
-#: neutron/plugins/brocade/NeutronPlugin.py:66
-#: neutron/plugins/ml2/drivers/brocade/mechanism_brocade.py:33
-msgid "The address of the host to SSH to"
-msgstr ""
-
-#: neutron/plugins/brocade/NeutronPlugin.py:68
-#: neutron/plugins/ml2/drivers/brocade/mechanism_brocade.py:35
-msgid "The SSH username to use"
-msgstr ""
-
-#: neutron/plugins/brocade/NeutronPlugin.py:70
-#: neutron/plugins/ml2/drivers/brocade/mechanism_brocade.py:37
-msgid "The SSH password to use"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:332
-#, python-format
-msgid "No device MAC attached to port %s. Skipping notification to controller."
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:337
-#, python-format
-msgid "Unable to create remote port: %s"
-msgstr ""
-
-#: neutron/plugins/brocade/NeutronPlugin.py:134
-#: neutron/plugins/hyperv/rpc_callbacks.py:55
-#: neutron/plugins/linuxbridge/lb_neutron_plugin.py:89
-#: neutron/plugins/mlnx/rpc_callbacks.py:76
-#: neutron/plugins/openvswitch/ovs_neutron_plugin.py:96
-#, python-format
-msgid "Unable to delete remote port: %s"
-msgstr ""
-
-#: neutron/plugins/brocade/NeutronPlugin.py:148
-#: neutron/plugins/brocade/NeutronPlugin.py:165
-#: neutron/plugins/hyperv/rpc_callbacks.py:71
-#: neutron/plugins/hyperv/rpc_callbacks.py:90
-#: neutron/plugins/linuxbridge/lb_neutron_plugin.py:112
-#: neutron/plugins/linuxbridge/lb_neutron_plugin.py:139
-#: neutron/plugins/linuxbridge/lb_neutron_plugin.py:162
-#: neutron/plugins/mlnx/rpc_callbacks.py:98
-#: neutron/plugins/mlnx/rpc_callbacks.py:117
-#: neutron/plugins/mlnx/rpc_callbacks.py:132
-#: neutron/plugins/openvswitch/ovs_neutron_plugin.py:114
-#: neutron/plugins/openvswitch/ovs_neutron_plugin.py:141
-#: neutron/plugins/openvswitch/ovs_neutron_plugin.py:164
-#, python-format
-msgid "Unable to create floating IP: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:357
-#, python-format
-msgid "Unable to update floating IP: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/servermanager.py:362
-#, python-format
-msgid "Unable to delete floating IP: %s"
-msgstr ""
-
-#: neutron/plugins/bigswitch/agent/restproxy_agent.py:113
-#: neutron/plugins/ryu/agent/ryu_neutron_agent.py:236
-msgid "Port update received"
-msgstr ""
-
-#: neutron/plugins/bigswitch/agent/restproxy_agent.py:117
-#, python-format
-msgid "Port %s is not present on this host."
-msgstr ""
-
-#: neutron/plugins/bigswitch/agent/restproxy_agent.py:120
-#, python-format
-msgid "Port %s found. Refreshing firewall."
-msgstr ""
-
-#: neutron/plugins/bigswitch/agent/restproxy_agent.py:148
-#: neutron/plugins/ryu/agent/ryu_neutron_agent.py:269
-msgid "Agent loop has new device"
-msgstr "代理程式迴圈具有新裝置"
-
-#: neutron/plugins/bigswitch/agent/restproxy_agent.py:152
-#: neutron/plugins/mlnx/agent/eswitch_neutron_agent.py:401
-#: neutron/plugins/nec/agent/nec_neutron_agent.py:222
-#: neutron/plugins/ofagent/agent/ofa_neutron_agent.py:1313
-#: neutron/plugins/ryu/agent/ryu_neutron_agent.py:273
-msgid "Error in agent event loop"
-msgstr "代理程式事件迴圈發生錯誤"
-
-#: neutron/plugins/bigswitch/agent/restproxy_agent.py:158
-#: neutron/plugins/ibm/agent/sdnve_neutron_agent.py:201
-#: neutron/plugins/linuxbridge/agent/linuxbridge_neutron_agent.py:975
-#: neutron/plugins/ofagent/agent/ofa_neutron_agent.py:1328
-#: neutron/plugins/openvswitch/agent/ovs_neutron_agent.py:1236
-#: neutron/plugins/ryu/agent/ryu_neutron_agent.py:279
-#, python-format
-msgid "Loop iteration exceeded interval (%(polling_interval)s vs. %(elapsed)s)!"
-msgstr "迴圈反覆運算已超出間隔(%(polling_interval)s 與 %(elapsed)s)!"
-
 #: neutron/plugins/bigswitch/db/porttracker_db.py:36
 msgid "No host_id in port request to track port location."
 msgstr ""
@@ -5466,14 +5255,17 @@ msgid "Duplicate router rules (src,dst)  found '%s'"
 msgstr ""
 
 #: neutron/plugins/brocade/NeutronPlugin.py:66
+#: neutron/plugins/ml2/drivers/brocade/mechanism_brocade.py:33
 msgid "The address of the host to SSH to"
 msgstr ""
 
 #: neutron/plugins/brocade/NeutronPlugin.py:68
+#: neutron/plugins/ml2/drivers/brocade/mechanism_brocade.py:35
 msgid "The SSH username to use"
 msgstr ""
 
 #: neutron/plugins/brocade/NeutronPlugin.py:70
+#: neutron/plugins/ml2/drivers/brocade/mechanism_brocade.py:37
 msgid "The SSH password to use"
 msgstr ""
 
@@ -8386,7 +8178,7 @@ msgstr ""
 
 #: neutron/plugins/midonet/midonet_lib.py:273
 #, python-format
-msgid "%s. Agent terminated!"
+msgid "MidoClient.update_port called: id=%(id)s, kwargs=%(kwargs)s"
 msgstr ""
 
 #: neutron/plugins/midonet/midonet_lib.py:298
@@ -12878,7 +12670,7 @@ msgstr ""
 
 #: neutron/plugins/vmware/dbexts/nsxrouter.py:61
 #, python-format
-msgid "DSCP value (%s) will be ignored with 'trusted' marking"
+msgid "Nsx router extension successfully processed for router:%s"
 msgstr ""
 
 #: neutron/plugins/vmware/dbexts/qos_db.py:286
@@ -15081,22 +14873,22 @@ msgstr ""
 msgid "Pool %(pool_id)s is scheduled to lbaas agent %(agent_id)s"
 msgstr ""
 
-#: neutron/services/loadbalancer/plugin.py:81
+#: neutron/services/loadbalancer/plugin.py:82
 #, python-format
 msgid "Delete associated loadbalancer pools before removing providers %s"
 msgstr ""
 
-#: neutron/services/loadbalancer/plugin.py:90
+#: neutron/services/loadbalancer/plugin.py:91
 #, python-format
 msgid "Error retrieving driver for provider %s"
 msgstr ""
 
-#: neutron/services/loadbalancer/plugin.py:98
+#: neutron/services/loadbalancer/plugin.py:99
 #, python-format
 msgid "Error retrieving provider for pool %s"
 msgstr ""
 
-#: neutron/services/loadbalancer/plugin.py:181
+#: neutron/services/loadbalancer/plugin.py:190
 #, python-format
 msgid "Failed to delete pool %s, putting it in ERROR state"
 msgstr ""
@@ -15124,216 +14916,6 @@ msgstr "匯入負載平衡器裝置驅動程式時發生錯誤:%s"
 msgid "Multiple device drivers with the same name found: %s"
 msgstr ""
 
-#: neutron/services/loadbalancer/agent/agent_manager.py:141
-msgid "Error upating stats"
-msgstr "更新統計資料時發生錯誤"
-
-#: neutron/services/loadbalancer/agent/agent_manager.py:156
-msgid "Unable to retrieve ready devices"
-msgstr "無法擷取備妥的裝置"
-
-#: neutron/services/loadbalancer/agent/agent_manager.py:173
-#: neutron/services/loadbalancer/agent/agent_manager.py:238
-#, python-format
-msgid "No device driver on agent: %s."
-msgstr ""
-
-#: neutron/services/loadbalancer/agent/agent_manager.py:183
-#, python-format
-msgid "Unable to deploy instance for pool: %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/agent/agent_manager.py:193
-#, python-format
-msgid "Unable to destroy device for pool: %s"
-msgstr "無法毀損儲存區的裝置:%s"
-
-#: neutron/services/loadbalancer/agent/agent_manager.py:206
-#, python-format
-msgid "%(operation)s %(obj)s %(id)s failed on device driver %(driver)s"
-msgstr ""
-
-#: neutron/services/loadbalancer/agent/agent_manager.py:332
-#, python-format
-msgid "Destroying pool %s due to agent disabling"
-msgstr ""
-
-#: neutron/services/loadbalancer/agent/agent_manager.py:335
-#, python-format
-msgid "Agent_updated by server side %s!"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/common/agent_driver_base.py:44
-msgid "Driver to use for scheduling pool to a default loadbalancer agent"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/common/agent_driver_base.py:52
-msgid "Device driver for agent should be specified in plugin driver."
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/common/agent_driver_base.py:79
-#, python-format
-msgid "Multiple lbaas agents found on host %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/common/agent_driver_base.py:99
-msgid "Expected active pool"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/common/agent_driver_base.py:161
-#, python-format
-msgid "Unknown object type: %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/common/agent_driver_base.py:172
-#, python-format
-msgid ""
-"Cannot update status: %(obj_type)s %(obj_id)s not found in the DB, it was"
-" probably deleted concurrently"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/common/agent_driver_base.py:195
-#, python-format
-msgid "Unable to find port %s to plug."
-msgstr "找不到要插入的埠 %s。"
-
-#: neutron/services/loadbalancer/drivers/common/agent_driver_base.py:219
-#: neutron/services/loadbalancer/drivers/common/agent_driver_base.py:236
-#, python-format
-msgid ""
-"Unable to find port %s to unplug.  This can occur when the Vip has been "
-"deleted first."
-msgstr "找不到要拔除的埠 %s。如果先刪除 VIP,則可能會發生此情況。"
-
-#: neutron/services/loadbalancer/drivers/haproxy/namespace_driver.py:48
-msgid "Location to store config and state files"
-msgstr "配置檔及狀態檔的儲存位置"
-
-#: neutron/services/loadbalancer/drivers/haproxy/namespace_driver.py:54
-msgid "The user group"
-msgstr "使用者群組"
-
-#: neutron/services/loadbalancer/drivers/haproxy/namespace_driver.py:70
-#, python-format
-msgid "Error importing interface driver: %s"
-msgstr "匯入介面驅動程式時發生錯誤:%s"
-
-#: neutron/services/loadbalancer/drivers/haproxy/namespace_driver.py:160
-#, python-format
-msgid "Stats socket not found for pool %s"
-msgstr "找不到儲存區 %s 的統計資料 Socket"
-
-#: neutron/services/loadbalancer/drivers/haproxy/namespace_driver.py:202
-#, python-format
-msgid "Error while connecting to stats socket: %s"
-msgstr "連接至統計資料 Socket 時發生錯誤:%s"
-
-#: neutron/services/loadbalancer/drivers/haproxy/namespace_driver.py:348
-#, python-format
-msgid "Unable to kill haproxy process: %s"
-msgstr "無法結束 haproxy 處理程序:%s"
-
-#: neutron/services/loadbalancer/drivers/netscaler/ncc_client.py:43
-#, python-format
-msgid "NCC Error %d"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/netscaler/ncc_client.py:54
-msgid "No NetScaler Control Center URI specified. Cannot connect."
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/netscaler/ncc_client.py:133
-#, python-format
-msgid "Connection error occurred while connecting to %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/netscaler/ncc_client.py:138
-#, python-format
-msgid "SSL error occurred while connecting to %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/netscaler/ncc_client.py:143
-#, python-format
-msgid "Request to %s timed out"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/netscaler/ncc_client.py:150
-msgid "Request did not specify a valid URL"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/netscaler/ncc_client.py:154
-#, python-format
-msgid "Too many redirects occurred for request to %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/netscaler/ncc_client.py:158
-#, python-format
-msgid "A request error while connecting to %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/netscaler/ncc_client.py:163
-#, python-format
-msgid "A unknown error occurred during request to %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/netscaler/ncc_client.py:168
-#, python-format
-msgid "Response: %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/netscaler/ncc_client.py:171
-#, python-format
-msgid "Unable to login. Invalid credentials passed.for: %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/drivers/netscaler/ncc_client.py:175
-#, python-format
-msgid "Failed %(method)s operation on %(url)s status code: %(response_status)s"
-msgstr ""
-
-#: neutron/services/loadbalancer/plugin.py:82
-#, python-format
-msgid "Delete associated loadbalancer pools before removing providers %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/plugin.py:91
-#, python-format
-msgid "Error retrieving driver for provider %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/plugin.py:99
-#, python-format
-msgid "Error retrieving provider for pool %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/plugin.py:190
-#, python-format
-msgid "NetScaler driver vip creation: %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/agent/agent.py:34
-msgid "Seconds between periodic task runs"
-msgstr "定期執行作業的間隔秒數"
-
-#: neutron/services/loadbalancer/agent/agent_manager.py:40
-msgid "Drivers used to manage loadbalancing devices"
-msgstr ""
-
-#: neutron/services/loadbalancer/agent/agent_manager.py:46
-#, python-format
-msgid "NetScaler driver vip removal: %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/agent/agent_manager.py:94
-#, python-format
-msgid "NetScaler driver pool creation: %s"
-msgstr ""
-
-#: neutron/services/loadbalancer/agent/agent_manager.py:101
-#, python-format
-msgid "NetScaler driver pool %(pool_id)s update: %(pool_obj)s"
-msgstr ""
-
 #: neutron/services/loadbalancer/agent/agent_manager.py:141
 #, python-format
 msgid "Error updating statistics on pool %s"
index 88428be07929992ddfd0b8e2cb067b2ce7e5dc00..161b71f8d1c6bb906235e457c69b61776e9c9faa 100644 (file)
@@ -59,6 +59,7 @@ from neutron.common import constants as const
 from neutron.common import exceptions
 from neutron.common import rpc as q_rpc
 from neutron.common import topics
+from neutron.common import utils
 from neutron import context as qcontext
 from neutron.db import agents_db
 from neutron.db import agentschedulers_db
index fbd5092e8bcf9d54db434421330c445d539ec043..62134439be70284e7bcf52879746c8855d8104b8 100644 (file)
@@ -134,25 +134,6 @@ class SimpleAgentMechanismDriverBase(AgentMechanismDriverBase):
         else:
             return False
 
-    @abstractmethod
-    def try_to_bind_segment_for_agent(self, context, segment, agent):
-        """Try to bind with segment for agent.
-
-        :param context: PortContext instance describing the port
-        :param segment: segment dictionary describing segment to bind
-        :param agent: agents_db entry describing agent to bind
-        :returns: True iff segment has been bound for agent
-
-        Called inside transaction during bind_port() so that derived
-        MechanismDrivers can use agent_db data along with built-in
-        knowledge of the corresponding agent's capabilities to attempt
-        to bind to the specified network segment for the agent.
-
-        If the segment can be bound for the agent, this function must
-        call context.set_binding() with appropriate values and then
-        return True. Otherwise, it must return False.
-        """
-
     @abstractmethod
     def check_segment_for_agent(self, segment, agent):
         """Check if segment can be bound for agent.
@@ -167,13 +148,3 @@ class SimpleAgentMechanismDriverBase(AgentMechanismDriverBase):
         determine whether or not the specified network segment can be
         bound for the agent.
         """
-        super(SimpleAgentMechanismDriverBase, self).__init__(
-            agent_type, supported_vnic_types)
-        self.vif_type = vif_type
-        self.vif_details = vif_details
-
-    def try_to_bind_segment_for_agent(self, context, segment, agent):
-        if self.check_segment_for_agent(segment, agent):
-            context.set_binding(segment[api.ID],
-                                self.vif_type,
-                                self.vif_details)
index 023696a3bf0d66fbfeff484487e1a24c795ef436..7963fdce45e34eef5b01d301b5135876af73f0fa 100644 (file)
@@ -15,8 +15,6 @@
 #    under the License.
 # @author: Ryota MIBU
 
-# TODO(amotoki): bug 1287432: Rename quantum_id column in ID mapping tables.
-
 import sqlalchemy as sa
 
 from neutron.db import api as db
index 65ba1b3427ed00402158914b4a994704fd770947..deae833547b88a8856edf1ac72f8a61ae1e35209 100644 (file)
@@ -291,154 +291,6 @@ class PFCFilterDriverMixin(object):
         return ofc_filter_id
 
 
-class PFCFilterDriverMixin(object):
-    """PFC PacketFilter Driver Mixin."""
-    filters_path = "/filters"
-    filter_path = "/filters/%s"
-
-    # PFC specific constants
-    MIN_PRIORITY = 1
-    MAX_PRIORITY = 32766
-    CREATE_ONLY_FIELDS = ['action', 'priority']
-    PFC_ALLOW_ACTION = "pass"
-    PFC_DROP_ACTION = "drop"
-
-    match_ofc_filter_id = re.compile("^/filters/(?P<filter_id>[^/]+)$")
-
-    @classmethod
-    def filter_supported(cls):
-        return True
-
-    def _set_param(self, filter_dict, body, key, create, convert_to=None):
-        if key in filter_dict:
-            if filter_dict[key]:
-                if convert_to:
-                    body[key] = convert_to(filter_dict[key])
-                else:
-                    body[key] = filter_dict[key]
-            elif not create:
-                body[key] = ""
-
-    def _generate_body(self, filter_dict, apply_ports=None, create=True):
-        body = {}
-
-        if create:
-            # action : pass, drop (mandatory)
-            if filter_dict['action'].lower() in ext_pf.ALLOW_ACTIONS:
-                body['action'] = self.PFC_ALLOW_ACTION
-            else:
-                body['action'] = self.PFC_DROP_ACTION
-            # priority : mandatory
-            body['priority'] = filter_dict['priority']
-
-        for key in ['src_mac', 'dst_mac', 'src_port', 'dst_port']:
-            self._set_param(filter_dict, body, key, create)
-
-        for key in ['src_cidr', 'dst_cidr']:
-            # CIDR must contain netmask even if it is an address.
-            convert_to = lambda x: str(netaddr.IPNetwork(x))
-            self._set_param(filter_dict, body, key, create, convert_to)
-
-        # protocol : decimal (0-255)
-        if 'protocol' in filter_dict:
-            if (not filter_dict['protocol'] or
-                # In the case of ARP, ip_proto should be set to wildcard.
-                # eth_type is set during adding an entry to DB layer.
-                filter_dict['protocol'].lower() == ext_pf.PROTO_NAME_ARP):
-                if not create:
-                    body['protocol'] = ""
-            elif filter_dict['protocol'].lower() == constants.PROTO_NAME_ICMP:
-                body['protocol'] = constants.PROTO_NUM_ICMP
-            elif filter_dict['protocol'].lower() == constants.PROTO_NAME_TCP:
-                body['protocol'] = constants.PROTO_NUM_TCP
-            elif filter_dict['protocol'].lower() == constants.PROTO_NAME_UDP:
-                body['protocol'] = constants.PROTO_NUM_UDP
-            else:
-                body['protocol'] = int(filter_dict['protocol'], 0)
-
-        # eth_type : hex (0x0-0xFFFF)
-        self._set_param(filter_dict, body, 'eth_type', create, hex)
-
-        # apply_ports
-        if apply_ports:
-            # each element of apply_ports is a tuple of (neutron_id, ofc_id),
-            body['apply_ports'] = []
-            for p in apply_ports:
-                try:
-                    body['apply_ports'].append(self._extract_ofc_port_id(p[1]))
-                except InvalidOFCIdFormat:
-                    pass
-
-        return body
-
-    def _validate_filter_common(self, filter_dict):
-        # Currently PFC support only IPv4 CIDR.
-        for field in ['src_cidr', 'dst_cidr']:
-            if (not filter_dict.get(field) or
-                filter_dict[field] == attributes.ATTR_NOT_SPECIFIED):
-                continue
-            net = netaddr.IPNetwork(filter_dict[field])
-            if net.version != 4:
-                raise ext_pf.PacketFilterIpVersionNonSupported(
-                    version=net.version, field=field, value=filter_dict[field])
-        if ('priority' in filter_dict and
-            not (self.MIN_PRIORITY <= filter_dict['priority']
-                 <= self.MAX_PRIORITY)):
-            raise ext_pf.PacketFilterInvalidPriority(
-                min=self.MIN_PRIORITY, max=self.MAX_PRIORITY)
-
-    def _validate_duplicate_priority(self, context, filter_dict):
-        plugin = manager.NeutronManager.get_plugin()
-        filters = {'network_id': [filter_dict['network_id']],
-                   'priority': [filter_dict['priority']]}
-        ret = plugin.get_packet_filters(context, filters=filters,
-                                        fields=['id'])
-        if ret:
-            raise ext_pf.PacketFilterDuplicatedPriority(
-                priority=filter_dict['priority'])
-
-    def validate_filter_create(self, context, filter_dict):
-        self._validate_filter_common(filter_dict)
-        self._validate_duplicate_priority(context, filter_dict)
-
-    def validate_filter_update(self, context, filter_dict):
-        for field in self.CREATE_ONLY_FIELDS:
-            if field in filter_dict:
-                raise ext_pf.PacketFilterUpdateNotSupported(field=field)
-        self._validate_filter_common(filter_dict)
-
-    @call_log.log
-    def create_filter(self, ofc_network_id, filter_dict,
-                      portinfo=None, filter_id=None, apply_ports=None):
-        body = self._generate_body(filter_dict, apply_ports, create=True)
-        res = self.client.post(self.filters_path, body=body)
-        # filter_id passed from a caller is not used.
-        # ofc_filter_id is generated by PFC because the prefix of
-        # filter_id has special meaning and it is internally used.
-        ofc_filter_id = res['id']
-        return self.filter_path % ofc_filter_id
-
-    @call_log.log
-    def update_filter(self, ofc_filter_id, filter_dict):
-        body = self._generate_body(filter_dict, create=False)
-        self.client.put(ofc_filter_id, body)
-
-    @call_log.log
-    def delete_filter(self, ofc_filter_id):
-        return self.client.delete(ofc_filter_id)
-
-    def _extract_ofc_filter_id(self, ofc_filter_id):
-        match = self.match_ofc_filter_id.match(ofc_filter_id)
-        if match:
-            return match.group('filter_id')
-        raise InvalidOFCIdFormat(resource='filter', ofc_id=ofc_filter_id)
-
-    def convert_ofc_filter_id(self, context, ofc_filter_id):
-        # PFC Packet Filter is supported after the format of mapping tables
-        # are changed, so it is enough just to return ofc_filter_id
-        return ofc_filter_id
-
-
 class PFCRouterDriverMixin(object):
 
     router_supported = True
index f56eb7e576b47bad520eb8ac47c917c7d963348c..94220c4e427c261ae98bc507237f889bbcde1495 100644 (file)
@@ -31,7 +31,6 @@ from neutron.db import db_base_plugin_v2
 from neutron.db import dhcp_rpc_base
 from neutron.db import external_net_db
 from neutron.db import l3_rpc_base
-from neutron.db import models_v2
 from neutron.db import portbindings_base
 from neutron.db import portbindings_db
 from neutron.db import quota_db  # noqa
@@ -658,18 +657,6 @@ class NECPluginV2(db_base_plugin_v2.NeutronDbPluginV2,
             super(NECPluginV2, self).delete_port(context, id)
         self.notify_security_groups_member_updated(context, port)
 
-    def delete_ports(self, context, filters):
-        # Note(amotoki): Override the superclass method to avoid
-        # a long transaction over external API calls.
-        # TODO(amotoki): Need to revisit after bug 1282925 is addressed.
-        query = context.session.query(
-            models_v2.Port).enable_eagerloads(False)
-        query = self._apply_filters_to_query(
-            query, models_v2.Port, filters)
-        port_ids = [p['id'] for p in query]
-        for port_id in port_ids:
-            self.delete_port(context, port_id)
-
 
 class NECPluginV2AgentNotifierApi(proxy.RpcProxy,
                                   sg_rpc.SecurityGroupAgentRpcApiMixin):
index 3afa968d846b253ddf9c5540453366c286b7023c..6a1c3c21b3c5d6b3d17fd0190ad019b3d80e16ad 100644 (file)
@@ -395,7 +395,7 @@ class NetworkGatewayMixin(networkgw.NetworkGatewayPluginBase):
                 raise MultipleGatewayConnections(
                     gateway_id=network_gateway_id)
             # Remove gateway port from network
-            # FIXME(salvatore-orlando): Ensure state of port in NSX is
+            # FIXME(salvatore-orlando): Ensure state of port in NVP is
             # consistent with outcome of transaction
             self.delete_port(context, net_connection['port_id'],
                              nw_gw_port_check=False)
diff --git a/neutron/plugins/vmware/extensions/nvp_networkgw.py b/neutron/plugins/vmware/extensions/nvp_networkgw.py
deleted file mode 100644 (file)
index 53299ea..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-# vim: tabstop=4 shiftwidth=4 softtabstop=4
-
-# Copyright 2013 VMware, Inc.
-# All Rights Reserved
-#
-#    Licensed under the Apache License, Version 2.0 (the "License"); you may
-#    not use this file except in compliance with the License. You may obtain
-#    a copy of the License at
-#
-#         http://www.apache.org/licenses/LICENSE-2.0
-#
-#    Unless required by applicable law or agreed to in writing, software
-#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
-#    License for the specific language governing permissions and limitations
-#    under the License.
-#
-# TODO(armando-migliaccio): This is deprecated in Icehouse, and
-# to be removed in Juno.
-
-from neutron.plugins.vmware.extensions import networkgw
-
-
-class Nvp_networkgw(networkgw.Networkgw):
-    """(Deprecated) API extension for Layer-2 Gateway support."""
-
-    @classmethod
-    def get_name(cls):
-        return "Neutron-NVP Network Gateway"
-
-    @classmethod
-    def get_alias(cls):
-        return "network-gateway"
-
-    @classmethod
-    def get_description(cls):
-        return ("Connects Neutron networks with external "
-                "networks at layer 2 (deprecated).")
-
-    @classmethod
-    def get_namespace(cls):
-        return "http://docs.openstack.org/ext/neutron/network-gateway/api/v1.0"
index 9689a789bce554a4715afd8eeae64d04a7e33f11..fe5aaa3b1623be2c673cfbfe55d6ccdefd3f18e7 100644 (file)
@@ -1059,7 +1059,6 @@ class TestCiscoRouterInterfacesV2(CiscoNetworkPluginV2TestCase):
         super(TestCiscoRouterInterfacesV2, self).setUp()
         ext_mgr = extensions.PluginAwareExtensionManager.get_instance()
         self.ext_api = test_extensions.setup_extensions_middleware(ext_mgr)
-        self.addCleanup(cisco_config.CONF.reset)
 
     @contextlib.contextmanager
     def _network_subnet_router(self):
index 274228e4080d2b4095dfbef5ab305b7f94aac989..826416d727c011f1e4ea23c61a316abdb18a2465 100644 (file)
@@ -449,53 +449,6 @@ class VPNPluginDbTestCase(VPNTestMixin,
         app = config.load_paste_app('extensions_test_app')
         self.ext_api = ExtensionMiddleware(app, ext_mgr=ext_mgr)
 
-    def _check_ipsec_site_connection(self, ipsec_site_connection, keys, dpd):
-        self.assertEqual(
-            keys,
-            dict((k, v) for k, v
-                 in ipsec_site_connection.items()
-                 if k in keys))
-        self.assertEqual(
-            dpd,
-            dict((k, v) for k, v
-                 in ipsec_site_connection['dpd'].items()
-                 if k in dpd))
-
-    def _set_active(self, model, resource_id):
-        service_plugin = manager.NeutronManager.get_service_plugins()[
-            constants.VPN]
-        adminContext = context.get_admin_context()
-        with adminContext.session.begin(subtransactions=True):
-            resource_db = service_plugin._get_resource(
-                adminContext,
-                model,
-                resource_id)
-            resource_db.status = constants.ACTIVE
-
-
-class VPNPluginDbTestCase(VPNTestMixin,
-                          test_l3_plugin.L3NatTestCaseMixin,
-                          test_db_plugin.NeutronDbPluginV2TestCase):
-    def setUp(self, core_plugin=None, vpnaas_plugin=DB_VPN_PLUGIN_KLASS):
-        service_plugins = {'vpnaas_plugin': vpnaas_plugin}
-        plugin_str = ('neutron.tests.unit.db.vpn.'
-                      'test_db_vpnaas.TestVpnCorePlugin')
-
-        super(VPNPluginDbTestCase, self).setUp(
-            plugin_str,
-            service_plugins=service_plugins
-        )
-        self._subnet_id = uuidutils.generate_uuid()
-        self.core_plugin = TestVpnCorePlugin
-        self.plugin = vpn_plugin.VPNPlugin()
-        ext_mgr = PluginAwareExtensionManager(
-            extensions_path,
-            {constants.CORE: self.core_plugin,
-             constants.VPN: self.plugin}
-        )
-        app = config.load_paste_app('extensions_test_app')
-        self.ext_api = ExtensionMiddleware(app, ext_mgr=ext_mgr)
-
 
 class TestVpnaas(VPNPluginDbTestCase):
 
index 1471d2127efbdee98d7a3bb32ff6befffe829020..52970aa52afbbb847295170e9a531faf114fe0a5 100644 (file)
@@ -50,14 +50,6 @@ class TestHyperVUtilsV2(base.BaseTestCase):
     _FAKE_REMOTE_ADDR = '0.0.0.0/0'
     _FAKE_WEIGHT = 'fake_weight'
 
-    _FAKE_ACL_ACT = 'fake_acl_action'
-    _FAKE_ACL_DIR = 'fake_acl_dir'
-    _FAKE_ACL_TYPE = 'fake_acl_type'
-    _FAKE_LOCAL_PORT = 'fake_local_port'
-    _FAKE_PROTOCOL = 'fake_port_protocol'
-    _FAKE_REMOTE_ADDR = '0.0.0.0/0'
-    _FAKE_WEIGHT = 'fake_weight'
-
     def setUp(self):
         super(TestHyperVUtilsV2, self).setUp()
         self._utils = utilsv2.HyperVUtilsV2()
index 7a096093525558e4c302098e258f10c9aeb48c1b..3b8a6478b49cd3cd7d98572e23b79750230efeba 100644 (file)
@@ -13,7 +13,6 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-import contextlib
 import os
 
 import fixtures
index d18642992e2f3f52d104d7e71a38696e67de8784..b87a9255a3a6c678ba5713e8dafc61035da01ee7 100644 (file)
@@ -124,17 +124,6 @@ class TestNecPluginPacketFilterBase(test_nec_plugin.NecPluginV2TestCase):
                 self._delete('packet_filters', pf['packet_filter']['id'])
 
 
-class TestNecPluginPacketFilter(TestNecPluginPacketFilterBase):
-
-    def setUp(self):
-        super(TestNecPluginPacketFilter, self).setUp()
-        # Remove attributes explicitly from mock object to check
-        # a case where there are no update_filter and validate_*.
-        del self.ofc.driver.update_filter
-        del self.ofc.driver.validate_filter_create
-        del self.ofc.driver.validate_filter_update
-
-
 class TestNecPluginPacketFilter(TestNecPluginPacketFilterBase):
 
     def setUp(self):
index 40fd3e601b1a45768fbf5c6697e708fb966f28c8..7764bce763999b07406c6f7bcb005c6d005555f1 100644 (file)
@@ -722,7 +722,6 @@ class TestDnsmasq(TestBase):
         self.conf.set_override('dnsmasq_dns_servers', ['8.8.8.8'])
         self._test_spawn(['--conf-file=',
                           '--server=8.8.8.8',
-                          '--server=9.9.9.9',
                           '--domain=openstacklocal'])
 
     def test_spawn_cfg_multiple_dns_server(self):