Hello community, here is the log from the commit of package openstack-neutron for openSUSE:Factory checked in at 2013-10-21 12:30:23 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/openstack-neutron (Old) and /work/SRC/openSUSE:Factory/.openstack-neutron.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "openstack-neutron" Changes: -------- --- /work/SRC/openSUSE:Factory/openstack-neutron/openstack-neutron.changes 2013-10-18 19:23:22.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.openstack-neutron.new/openstack-neutron.changes 2013-10-21 12:30:25.000000000 +0200 @@ -1,0 +2,5 @@ +Fri Oct 18 20:08:31 UTC 2013 - [email protected] + +- add 0001-Fix-update_device_up-method-of-linuxbridge-plugin.patch + +------------------------------------------------------------------- New: ---- 0001-Fix-update_device_up-method-of-linuxbridge-plugin.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ openstack-neutron.spec ++++++ --- /var/tmp/diff_new_pack.b8tGw0/_old 2013-10-21 12:30:26.000000000 +0200 +++ /var/tmp/diff_new_pack.b8tGw0/_new 2013-10-21 12:30:26.000000000 +0200 @@ -33,6 +33,7 @@ Source3: neutron-sudoers Source4: openstack-%{component}-plugin.init Source5: sysconfig.neutron +Patch0: 0001-Fix-update_device_up-method-of-linuxbridge-plugin.patch BuildRequires: crudini BuildRequires: fdupes BuildRequires: openstack-suse-macros @@ -46,7 +47,7 @@ Requires: openstack-suse-sudo Requires: python >= 2.6.8 Requires: python-neutron = %{version} -Requires: python-oslo.config >= 1.2.0a3 +Requires: python-oslo.config >= 1.2.0 Provides: openstack-quantum = 2013.2.0 Obsoletes: openstack-quantum < 2013.2.0 Requires(pre): pwdutils @@ -87,12 +88,12 @@ Requires: python-httplib2 Requires: python-iso8601 >= 0.1.4 Requires: python-jsonrpclib -Requires: python-keystoneclient >= 0.3.0 +Requires: python-keystoneclient >= 0.3.2 Requires: python-kombu >= 2.4.8 Requires: python-netaddr -Requires: python-neutronclient >= 2.2.3 -Requires: python-novaclient >= 2.12.0 -Requires: python-oslo.config >= 1.2.0a3 +Requires: python-neutronclient >= 2.3.0 +Requires: python-novaclient >= 2.15.0 +Requires: python-oslo.config >= 1.2.0 Requires: python-pbr >= 0.5.21 Requires: python-pyudev Requires: python-requests >= 1.1 @@ -259,14 +260,14 @@ Summary: OpenStack Network - Testsuite Group: Development/Languages/Python Requires: %{name} = %{version} -Requires: python-WebTest >= 1.3.3 -Requires: python-cliff >= 1.4 +Requires: python-WebTest >= 2.0 +Requires: python-cliff >= 1.4.3 Requires: python-configobj Requires: python-coverage >= 3.6 %if 0%{?suse_version} && 0%{?suse_version} <= 1110 Requires: python-discover %endif -Requires: python-fixtures >= 0.3.12 +Requires: python-fixtures >= 0.3.14 Requires: python-flake8 >= 2.0 Requires: python-hacking >= 0.5.6 Requires: python-mock >= 1.0 @@ -285,6 +286,7 @@ %prep %setup -q -n neutron-2013.2 +%patch0 -p1 ## comment me in # %xopenstack_cleanup_prep ++++++ 0001-Fix-update_device_up-method-of-linuxbridge-plugin.patch ++++++ >From 11746bbd7b02039ef1b63b3eaafbbdb603e09b52 Mon Sep 17 00:00:00 2001 From: Eugene Nikanorov <[email protected]> Date: Fri, 18 Oct 2013 17:23:01 +0400 Subject: [PATCH] Fix update_device_up method of linuxbridge plugin Change-Id: I97f2f9249b684aa5350b3f0621754543e80bec70 Closes-Bug: #1241602 --- neutron/plugins/linuxbridge/lb_neutron_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neutron/plugins/linuxbridge/lb_neutron_plugin.py b/neutron/plugins/linuxbridge/lb_neutron_plugin.py index 1920d0e..68bfd41 100644 --- a/neutron/plugins/linuxbridge/lb_neutron_plugin.py +++ b/neutron/plugins/linuxbridge/lb_neutron_plugin.py @@ -144,7 +144,7 @@ class LinuxBridgeRpcCallbacks(dhcp_rpc_base.DhcpRpcCallbackMixin, agent_id = kwargs.get('agent_id') device = kwargs.get('device') host = kwargs.get('host') - port = self.get_port_from_device.get_port(device) + port = self.get_port_from_device(device) LOG.debug(_("Device %(device)s up on %(agent_id)s"), {'device': device, 'agent_id': agent_id}) plugin = manager.NeutronManager.get_plugin() -- 1.8.4 -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
