Federico Simoncelli has uploaded a new change for review.

Change subject: core: fix ReconstructMasterDomainCommand constructor
......................................................................

core: fix ReconstructMasterDomainCommand constructor

In change:

 8255f44 aaa: more fixes to command context propgation

a new constructor has been added modifying the existing one to call the
base class (super).

Instead to maintain the previous behavior the old constructor should
have called the new one (in order to initialize the class).

Change-Id: If8e54cccc9ebe7829a88c1ca296c1dfbf8542256
Signed-off-by: Federico Simoncelli <fsimo...@redhat.com>
---
M 
backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/storage/ReconstructMasterDomainCommand.java
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/47/30047/1

diff --git 
a/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/storage/ReconstructMasterDomainCommand.java
 
b/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/storage/ReconstructMasterDomainCommand.java
index a361f18..8b96ce8 100644
--- 
a/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/storage/ReconstructMasterDomainCommand.java
+++ 
b/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/storage/ReconstructMasterDomainCommand.java
@@ -46,7 +46,7 @@
     }
 
     public ReconstructMasterDomainCommand(T parameters) {
-        super(parameters, null);
+        this(parameters, null);
     }
 
     public ReconstructMasterDomainCommand(T parameters, CommandContext 
commandContext) {


-- 
To view, visit http://gerrit.ovirt.org/30047
To unsubscribe, visit http://gerrit.ovirt.org/settings

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

Reply via email to