Alexander Wels has uploaded a new change for review.

Change subject: webadmin: clusters main tab
......................................................................

webadmin: clusters main tab

- The fix to the persistent bag implementation follows the
  entire object tree and calls all the getters. This particular
  object did not override the getQueryableId method which caused
  an exception to occur.
- This patch fixes that.

Change-Id: I91c8f0af966a0d4fcab7fa8afeb4dcb90b7fd36c
Signed-off-by: Alexander Wels <aw...@redhat.com>
---
M 
backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/VDSGroupHostsAndVMs.java
1 file changed, 5 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/95/41895/1

diff --git 
a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/VDSGroupHostsAndVMs.java
 
b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/VDSGroupHostsAndVMs.java
index c005c43..3f67966 100644
--- 
a/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/VDSGroupHostsAndVMs.java
+++ 
b/backend/manager/modules/common/src/main/java/org/ovirt/engine/core/common/businessentities/VDSGroupHostsAndVMs.java
@@ -12,6 +12,11 @@
     private int hosts;
     private int vms;
 
+    @Override
+    public Object getQueryableId() {
+        return getVdsGroupId();
+    }
+
     public Guid getVdsGroupId() {
         return vdsGroupId;
     }


-- 
To view, visit https://gerrit.ovirt.org/41895
To unsubscribe, visit https://gerrit.ovirt.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I91c8f0af966a0d4fcab7fa8afeb4dcb90b7fd36c
Gerrit-PatchSet: 1
Gerrit-Project: ovirt-engine
Gerrit-Branch: master
Gerrit-Owner: Alexander Wels <aw...@redhat.com>
_______________________________________________
Engine-patches mailing list
Engine-patches@ovirt.org
http://lists.ovirt.org/mailman/listinfo/engine-patches

Reply via email to