Alon Bar-Lev has uploaded a new change for review. Change subject: openstack: neutron: convert keys to strings ......................................................................
openstack: neutron: convert keys to strings engine sends integers instead of strings for configuration, make sure these are converted to strings. Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=989915 Change-Id: I8dc4d250f9d143d5b56af74a7df680970b4cf107 Signed-off-by: Alon Bar-Lev <[email protected]> --- M src/plugins/ovirt-host-deploy/openstack/neutron.py M src/plugins/ovirt-host-deploy/openstack/neutron_linuxbridge.py M src/plugins/ovirt-host-deploy/openstack/neutron_openvswitch.py 3 files changed, 3 insertions(+), 3 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-host-deploy refs/changes/57/17457/1 diff --git a/src/plugins/ovirt-host-deploy/openstack/neutron.py b/src/plugins/ovirt-host-deploy/openstack/neutron.py index 1dadaf4..769b090 100644 --- a/src/plugins/ovirt-host-deploy/openstack/neutron.py +++ b/src/plugins/ovirt-host-deploy/openstack/neutron.py @@ -111,7 +111,7 @@ odeploycons.FileLocations.OPENSTACK_NEUTRON_CONFIG, section, key, - value, + str(value), ), ) diff --git a/src/plugins/ovirt-host-deploy/openstack/neutron_linuxbridge.py b/src/plugins/ovirt-host-deploy/openstack/neutron_linuxbridge.py index 974e9a8..5a7fadd 100644 --- a/src/plugins/ovirt-host-deploy/openstack/neutron_linuxbridge.py +++ b/src/plugins/ovirt-host-deploy/openstack/neutron_linuxbridge.py @@ -126,7 +126,7 @@ ), section, key, - value, + str(value), ), ) if os.path.exists( diff --git a/src/plugins/ovirt-host-deploy/openstack/neutron_openvswitch.py b/src/plugins/ovirt-host-deploy/openstack/neutron_openvswitch.py index 45b85fd..d86cbde 100644 --- a/src/plugins/ovirt-host-deploy/openstack/neutron_openvswitch.py +++ b/src/plugins/ovirt-host-deploy/openstack/neutron_openvswitch.py @@ -158,7 +158,7 @@ ), section, key, - value, + str(value), ), ) if os.path.exists( -- To view, visit http://gerrit.ovirt.org/17457 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I8dc4d250f9d143d5b56af74a7df680970b4cf107 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-host-deploy Gerrit-Branch: master Gerrit-Owner: Alon Bar-Lev <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
