Federico Simoncelli has uploaded a new change for review. Change subject: backend: ExportRepoImageParameters default constructor ......................................................................
backend: ExportRepoImageParameters default constructor This fixes a weird serialization/deserialization issue that resulted in destinationDomainId to be null. Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=987986 Change-Id: I63556883c8d81ce3914feac5a76d102d3964c678 Signed-off-by: Federico Simoncelli <[email protected]> --- M backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/action/ExportRepoImageParameters.java 1 file changed, 5 insertions(+), 0 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/42/17342/1 diff --git a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/action/ExportRepoImageParameters.java b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/action/ExportRepoImageParameters.java index 6c74c5b..2cd1b6e 100644 --- a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/action/ExportRepoImageParameters.java +++ b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/action/ExportRepoImageParameters.java @@ -8,6 +8,11 @@ private Guid destinationDomainId; + @SuppressWarnings("unused") + public ExportRepoImageParameters() { + super(); + } + public ExportRepoImageParameters(Guid imageId) { super(imageId); } -- To view, visit http://gerrit.ovirt.org/17342 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I63556883c8d81ce3914feac5a76d102d3964c678 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Federico Simoncelli <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
