Alon Bar-Lev has uploaded a new change for review. Change subject: bootstrap: do not check connectivity nor unique id when VdsInstall=false ......................................................................
bootstrap: do not check connectivity nor unique id when VdsInstall=false Change-Id: Ief74abae57c4fd7b76642df62aba7690a9f66208 Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=873222 Signed-off-by: Alon Bar-Lev <[email protected]> --- M backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/AddVdsCommand.java 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/57/9157/1 diff --git a/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/AddVdsCommand.java b/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/AddVdsCommand.java index b05b8c1..a3ebb91 100644 --- a/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/AddVdsCommand.java +++ b/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/AddVdsCommand.java @@ -345,7 +345,7 @@ boolean retrunValue = true; // execute the connectivity and id uniqueness validation for VDS type hosts - if (vds.getvds_type() == VDSType.VDS) { + if (vds.getvds_type() == VDSType.VDS && Config.<Boolean> GetValue(ConfigValues.InstallVds)) { VdsInstallHelper installHelper = getVdsInstallHelper(); try { Long timeout = -- To view, visit http://gerrit.ovirt.org/9157 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Ief74abae57c4fd7b76642df62aba7690a9f66208 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Alon Bar-Lev <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
