Vered Volansky has uploaded a new change for review. Change subject: core: Change VMDevice.toString() (885984) ......................................................................
core: Change VMDevice.toString() (885984) In VMDevice.toString the device alias property was serialized as aliasa. Changed to deviceAlias just to be clear. Change-Id: I28720d0d843c9be4225437bd8f8b39c981fab1e5 Bug-Url: https://bugzilla.redhat.com/885984 Signed-off-by: Vered Volansky <[email protected]> --- M backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/VmDevice.java 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/37/9837/1 diff --git a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/VmDevice.java b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/VmDevice.java index 0a6a8fb..7190876 100644 --- a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/VmDevice.java +++ b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/VmDevice.java @@ -296,7 +296,7 @@ sb.append(getIsPlugged()); sb.append(", readOnly="); sb.append(getIsReadOnly()); - sb.append(", alias="); + sb.append(", deviceAlias="); sb.append(getAlias()); sb.append("}"); return sb.toString(); -- To view, visit http://gerrit.ovirt.org/9837 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I28720d0d843c9be4225437bd8f8b39c981fab1e5 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Vered Volansky <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
