Skip to content

Commit

Permalink
Fixed offline start for non-delegate launcher
Browse files Browse the repository at this point in the history
Request: CT_BDEPLOY-242
Change-Id: I9eeac720b9f79b60690c8f5498fb1fce8a392e89
  • Loading branch information
TheTechnolog committed Aug 9, 2024
1 parent 8f46c12 commit 0a747ad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ private void doLaunch(Auditor auditor, LauncherSplash splash) {
log.info("Continuing launch in offline mode...");
@SuppressWarnings("null")
Key launcher = clientSoftwareConfiguration.launcher;
requiredLauncher = Map.entry(VersionHelper.parse(launcher.getTag()), launcher);
requiredLauncher = launcher == null ? null : Map.entry(VersionHelper.parse(launcher.getTag()), launcher);
} else {
log.info("Continuing launch in online mode...");
requiredLauncher = doSelfUpdate(hive, reporter);
Expand Down

0 comments on commit 0a747ad

Please sign in to comment.