Vinzenz Feenstra has uploaded a new change for review. Change subject: [dal] - Fix storing of app_list and vm_fqdn values ......................................................................
[dal] - Fix storing of app_list and vm_fqdn values The application list and the fqdn have not been stored to the vm_dynamic table due to the batchmapper. Which will cause SSO not to be working. Change-Id: I49455c2531e93094cb7543df6891033b12a2d86a Bug-Url: https://bugzilla.redhat.com/1015574 Signed-off-by: Vinzenz Feenstra <vfeen...@redhat.com> --- M backend/manager/modules/dal/src/main/java/org/ovirt/engine/core/dao/VmDynamicDAODbFacadeImpl.java 1 file changed, 2 insertions(+), 0 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/37/20237/1 diff --git a/backend/manager/modules/dal/src/main/java/org/ovirt/engine/core/dao/VmDynamicDAODbFacadeImpl.java b/backend/manager/modules/dal/src/main/java/org/ovirt/engine/core/dao/VmDynamicDAODbFacadeImpl.java index ef14347..713eda9 100644 --- a/backend/manager/modules/dal/src/main/java/org/ovirt/engine/core/dao/VmDynamicDAODbFacadeImpl.java +++ b/backend/manager/modules/dal/src/main/java/org/ovirt/engine/core/dao/VmDynamicDAODbFacadeImpl.java @@ -198,6 +198,8 @@ .addValue("vm_ip", entity.getVmIp()) .addValue("last_start_time", entity.getLastStartTime()) .addValue("vm_pid", entity.getVmPid()) + .addValue("vm_fqdn", entity.getVmFQDN()) + .addValue("app_list", entity.getAppList()) .addValue("display", entity.getDisplay()) .addValue("acpi_enable", entity.getAcpiEnable()) .addValue("session", entity.getSession()) -- To view, visit http://gerrit.ovirt.org/20237 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I49455c2531e93094cb7543df6891033b12a2d86a Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: ovirt-engine-3.3 Gerrit-Owner: Vinzenz Feenstra <vfeen...@redhat.com> _______________________________________________ Engine-patches mailing list Engine-patches@ovirt.org http://lists.ovirt.org/mailman/listinfo/engine-patches