Dima Kuznetsov has uploaded a new change for review. Change subject: schema: Fix wrong type in GuestNetworkDeviceInfo ......................................................................
schema: Fix wrong type in GuestNetworkDeviceInfo Changed inet and inet6 in GuestNetworkDeviceInfo to be lists as they are actually reported by vdsm and received by the engine. Change-Id: I003d15d55897c0d6135ceb283ca30ba3ccc078cd Signed-off-by: Dima Kuznetsov <[email protected]> --- M vdsm_api/vdsmapi-schema.json 1 file changed, 3 insertions(+), 3 deletions(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/63/27263/1 diff --git a/vdsm_api/vdsmapi-schema.json b/vdsm_api/vdsmapi-schema.json index 6765536..43abe214 100644 --- a/vdsm_api/vdsmapi-schema.json +++ b/vdsm_api/vdsmapi-schema.json @@ -5793,14 +5793,14 @@ # # @hw: The MAC address # -# @inet: The IPv4 address +# @inet: The IPv4 addresses # -# @inet6: The IPv6 address +# @inet6: The IPv6 addresses # # Since: 4.10.0 ## {'type': 'GuestNetworkDeviceInfo', - 'data': {'name': 'str', 'hw': 'str', 'inet': 'str', 'inet6': 'str'}} + 'data': {'name': 'str', 'hw': 'str', 'inet': ['str'], 'inet6': ['str']}} ## # @GuestSessionState: -- To view, visit http://gerrit.ovirt.org/27263 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I003d15d55897c0d6135ceb283ca30ba3ccc078cd Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Dima Kuznetsov <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
