Ido Barkan has uploaded a new change for review. Change subject: Fix vlan tagging missing XML node for sr-iov. ......................................................................
Fix vlan tagging missing XML node for sr-iov. This is an integration bug between the VDSM and RHEV-M. The vlanid parameter was passed in the API with the wrong case, hence was not passed down to libvirt api. Change-Id: Id96f8abe6daab1985ae5094ba19738dbc895d6c7 Bug-Url: https://bugzilla.redhat.com/1271697 Signed-off-by: Ido Barkan <[email protected]> --- M vdsm/virt/vmdevices/hostdevice.py 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/49/47349/1 diff --git a/vdsm/virt/vmdevices/hostdevice.py b/vdsm/virt/vmdevices/hostdevice.py index f9a2c76..5214bf9 100644 --- a/vdsm/virt/vmdevices/hostdevice.py +++ b/vdsm/virt/vmdevices/hostdevice.py @@ -35,7 +35,7 @@ self._deviceParams = get_device_params(self.device) self.macAddr = self.specParams.get('macAddr') - self.vlanId = self.specParams.get('vlanId') + self.vlanId = self.specParams.get('vlanid') self.hostAddress = self._deviceParams.get('address') def detach(self): -- To view, visit https://gerrit.ovirt.org/47349 To unsubscribe, visit https://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Id96f8abe6daab1985ae5094ba19738dbc895d6c7 Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: ovirt-3.6 Gerrit-Owner: Ido Barkan <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
