Maor Lipchuk has uploaded a new change for review. Change subject: core[WIP]: Seperate queries for file and block_1 ......................................................................
core[WIP]: Seperate queries for file and block_1 WIP Change-Id: Ied751f41b5ad191de2e66e2c8bcb8dccbe9d79b8 Bug-Url: https://bugzilla.redhat.com/?????? Signed-off-by: Maor Lipchuk <[email protected]> --- M backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/storage/GetStorageDomainsWithAttachedStoragePoolGuidQuery.java 1 file changed, 2 insertions(+), 2 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/06/36406/1 diff --git a/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/storage/GetStorageDomainsWithAttachedStoragePoolGuidQuery.java b/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/storage/GetStorageDomainsWithAttachedStoragePoolGuidQuery.java index a53a9af..97ce631 100644 --- a/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/storage/GetStorageDomainsWithAttachedStoragePoolGuidQuery.java +++ b/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/storage/GetStorageDomainsWithAttachedStoragePoolGuidQuery.java @@ -32,7 +32,7 @@ import org.ovirt.engine.core.compat.Guid; public class GetStorageDomainsWithAttachedStoragePoolGuidQuery<P extends StorageDomainsAndStoragePoolIdQueryParameters> extends QueriesCommandBase<P> { - private Guid vdsId = null; + private Guid vdsId; public GetStorageDomainsWithAttachedStoragePoolGuidQuery(P parameters) { super(parameters); @@ -82,7 +82,7 @@ boolean connectResult = connectStorageDomain(storageDomain); if (connectResult) { vdsReturnValue = - getVdsBroker().RunVdsCommand(VDSCommandType.HSMGetStorageDomainInfo, + runVdsCommand(VDSCommandType.HSMGetStorageDomainInfo, new HSMGetStorageDomainInfoVDSCommandParameters(vdsId, storageDomain.getId())); } } catch (RuntimeException e) { -- To view, visit http://gerrit.ovirt.org/36406 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ied751f41b5ad191de2e66e2c8bcb8dccbe9d79b8 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Maor Lipchuk <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
