From 8297314499b2af557a9a9528953eb4e4824cd0a0 Mon Sep 17 00:00:00 2001 From: Gabor Apati-Nagy Date: Wed, 18 Oct 2017 09:55:49 +0100 Subject: [PATCH] [SCTX-2608] Honolulu Update - Server is still booting error Increased the wait between host_enable attempts, allowing to wait more for the host to reboot. This will affect Automated Updates and other normal Patching Wizard operations as well. Signed-off-by: Gabor Apati-Nagy --- .../PatchingWizard/PlanActions/BringBabiesBackAction.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/XenAdmin/Wizards/PatchingWizard/PlanActions/BringBabiesBackAction.cs b/XenAdmin/Wizards/PatchingWizard/PlanActions/BringBabiesBackAction.cs index 15b027af3..cfd709581 100644 --- a/XenAdmin/Wizards/PatchingWizard/PlanActions/BringBabiesBackAction.cs +++ b/XenAdmin/Wizards/PatchingWizard/PlanActions/BringBabiesBackAction.cs @@ -91,7 +91,7 @@ namespace XenAdmin.Wizards.PatchingWizard.PlanActions { retries++; - Thread.Sleep(1000); + Thread.Sleep(5000); try { @@ -102,7 +102,7 @@ namespace XenAdmin.Wizards.PatchingWizard.PlanActions if (retries > 60) throw; - log.Debug(string.Format("Cannot enable host {0}. Retrying in 1 sec.", _host.opaque_ref), e); + log.Debug(string.Format("Cannot enable host {0}. Retrying in 5 sec.", _host.opaque_ref), e); } }