Skip to content

Commit

Permalink
Cisco plugin (grizzly) does not pass proper args.
Browse files Browse the repository at this point in the history
Fixes bug 1213147

The Cisco plugin in grizzly does not pass proper arguments to
the enable_vlan_on_trunk_int() method in cisco_nexus_network_driver_v2.
The definition calls for 4 arguments (not counting self):

    def enable_vlan_on_trunk_int(self, mgr, nexus_switch,
                                 interface, vlanid)

but the call in the nexus driver passes only 3 arguments:

    self._client.enable_vlan_on_trunk_int(man,
                                          port_id,
                                          vlan_id)

Change-Id: Ie51affe692151a2ac92f22450e2e70b1005f3507
  • Loading branch information
Dane LeBlanc committed Aug 20, 2013
1 parent 043837e commit 07f772a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions quantum/plugins/cisco/nexus/cisco_nexus_plugin_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ def create_network(self, tenant_id, net_name, net_id, vlan_name, vlan_id,
_nexus_username,
_nexus_password)
self._client.enable_vlan_on_trunk_int(man,
_nexus_ip,
port_id,
vlan_id)

Expand Down

0 comments on commit 07f772a

Please sign in to comment.