Mark Wu has uploaded a new change for review. Change subject: Fix the 'MTU' option in networkTests ......................................................................
Fix the 'MTU' option in networkTests The 'mtu' option should be in lower case. It doesn't fail with ifcfg configurator, because the 'MTU=1234' passes through to the ifcfg file as an extra option. Change-Id: Ic09a5dd6e8f760eda5dece19bc7e0da2e49611e0 Signed-off-by: Mark Wu <[email protected]> --- M tests/functional/networkTests.py 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/09/18409/1 diff --git a/tests/functional/networkTests.py b/tests/functional/networkTests.py index ef76ec4..ddd7cbc 100644 --- a/tests/functional/networkTests.py +++ b/tests/functional/networkTests.py @@ -353,7 +353,7 @@ status, msg = self.vdsm_net.addNetwork(NETWORK_NAME, vlan=VLAN_ID, bond=BONDING_NAME, nics=nics, - opts={'MTU': MTU, + opts={'mtu': MTU, 'bridged': bridged}) vlan_name = '%s.%s' % (BONDING_NAME, VLAN_ID) -- To view, visit http://gerrit.ovirt.org/18409 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ic09a5dd6e8f760eda5dece19bc7e0da2e49611e0 Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Mark Wu <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
