mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-25 06:16:37 +01:00
[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 <gabor.apati-nagy@citrix.com>
This commit is contained in:
parent
3adb7b3f5c
commit
8297314499
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user