Oved Ourfali has uploaded a new change for review. Change subject: core: added matching constructor for SshSoftFencingCommand ......................................................................
core: added matching constructor for SshSoftFencingCommand Change-Id: Ibfa993bfb2928bbd5b73176c3a0e3835f420d68c Bug-Url: https://bugzilla.redhat.com/1119753 Signed-off-by: Oved Ourfali <[email protected]> --- M backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/SshSoftFencingCommand.java 1 file changed, 6 insertions(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/68/30168/1 diff --git a/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/SshSoftFencingCommand.java b/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/SshSoftFencingCommand.java index a7531bb..f40c490 100644 --- a/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/SshSoftFencingCommand.java +++ b/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/SshSoftFencingCommand.java @@ -3,6 +3,7 @@ import java.io.ByteArrayOutputStream; import java.io.IOException; +import org.ovirt.engine.core.bll.context.CommandContext; import org.ovirt.engine.core.bll.utils.EngineSSHClient; import org.ovirt.engine.core.common.action.VdsActionParameters; import org.ovirt.engine.core.common.config.Config; @@ -21,7 +22,11 @@ * command parameters */ public SshSoftFencingCommand(T parameters) { - super(parameters); + this(parameters, null); + } + + public SshSoftFencingCommand(T parameters, CommandContext commandContext) { + super(parameters, commandContext); } /** -- To view, visit http://gerrit.ovirt.org/30168 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ibfa993bfb2928bbd5b73176c3a0e3835f420d68c Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Oved Ourfali <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
