From: YAMAMOTO Takashi Date: Tue, 26 May 2015 20:10:33 +0000 (+0900) Subject: OVS-agent: Remove optional flags from br_tun.deferred() method X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=874fa6e02c2f91d711e8186d4e7e7e26c6dc74b9;p=openstack-build%2Fneutron-build.git OVS-agent: Remove optional flags from br_tun.deferred() method Currently they have no users. They are not appropriate for this higher-level interface anyway. Change-Id: I76b8d718e714728df88685ec41262958d2e78cb9 --- diff --git a/neutron/plugins/openvswitch/agent/openflow/ovs_ofctl/br_tun.py b/neutron/plugins/openvswitch/agent/openflow/ovs_ofctl/br_tun.py index 4407e2fe0..58301dfef 100644 --- a/neutron/plugins/openvswitch/agent/openflow/ovs_ofctl/br_tun.py +++ b/neutron/plugins/openvswitch/agent/openflow/ovs_ofctl/br_tun.py @@ -225,8 +225,8 @@ class OVSTunnelBridge(ovs_bridge.OVSAgentBridge, self.delete_flows(table_id=constants.DVR_NOT_LEARN, eth_src=mac) - def deferred(self, **kwargs): - return DeferredOVSTunnelBridge(self, **kwargs) + def deferred(self): + return DeferredOVSTunnelBridge(self) class DeferredOVSTunnelBridge(ovs_lib.DeferredOVSBridge):