Skip to content

Commit

Permalink
CA-360830: Do not allow the user to proceed without a client ID when …
Browse files Browse the repository at this point in the history
…applying updates after selecting new version ISO from disk.

Signed-off-by: Konstantina Chremmou <[email protected]>
  • Loading branch information
kc284 committed Nov 16, 2021
1 parent e3a30f4 commit 53bd449
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,14 @@ protected override void PageLeaveCore(PageLoadedDirection direction, ref bool ca
return;
}

if (ApplyUpdatesToNewVersion && !Updates.CheckCanDownloadUpdates())
{
cancel = true;
using (var errDlg = new ClientIdDialog())
errDlg.ShowDialog(ParentForm);
return;
}

//Upload the patches to the masters if it is necessary
List<Host> masters = SelectedMasters;

Expand Down

0 comments on commit 53bd449

Please sign in to comment.