Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit 53bd449

Browse files
committed
CA-360830: Do not allow the user to proceed without a client ID when applying updates after selecting new version ISO from disk.
Signed-off-by: Konstantina Chremmou <[email protected]>
1 parent e3a30f4 commit 53bd449

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

XenAdmin/Wizards/PatchingWizard/PatchingWizard_SelectServers.cs

+8
Original file line numberDiff line numberDiff line change
@@ -416,6 +416,14 @@ protected override void PageLeaveCore(PageLoadedDirection direction, ref bool ca
416416
return;
417417
}
418418

419+
if (ApplyUpdatesToNewVersion && !Updates.CheckCanDownloadUpdates())
420+
{
421+
cancel = true;
422+
using (var errDlg = new ClientIdDialog())
423+
errDlg.ShowDialog(ParentForm);
424+
return;
425+
}
426+
419427
//Upload the patches to the masters if it is necessary
420428
List<Host> masters = SelectedMasters;
421429

0 commit comments

Comments
 (0)