ofri masad has uploaded a new change for review. Change subject: core: Fix LoadBalancing messeges ......................................................................
core: Fix LoadBalancing messeges When VM migration was triggered by a Load Balancing algorithm only the "migration finished" message appeared and not the "migration started" message. VdsLoadBalancingAlgorithm was calling setShouldBeLogged(false). Line was removed. Change-Id: I90707ee0f97544f128592c408fcce2a2aae65ff7 Bug-Url: https://bugzilla.redhat.com/744813 Signed-off-by: Ofri Masad <[email protected]> --- M backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/VdsLoadBalancingAlgorithm.java 1 file changed, 0 insertions(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/51/8951/1 diff --git a/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/VdsLoadBalancingAlgorithm.java b/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/VdsLoadBalancingAlgorithm.java index d029785..02c5bbb 100644 --- a/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/VdsLoadBalancingAlgorithm.java +++ b/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/VdsLoadBalancingAlgorithm.java @@ -253,7 +253,6 @@ Guid destinationVdsId = destinationVds.getId(); MigrateVmToServerParameters parameters = new MigrateVmToServerParameters(false, vm.getId(), destinationVdsId); - parameters.setShouldBeLogged(false); Backend.getInstance().runInternalAction(VdcActionType.MigrateVmToServer, parameters, ExecutionHandler.createInternalJobContext()); -- To view, visit http://gerrit.ovirt.org/8951 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I90707ee0f97544f128592c408fcce2a2aae65ff7 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: ofri masad <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
