Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
pmbrull committed Feb 22, 2024
1 parent b7b35b6 commit f31ddf7
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,10 @@ public void initialize(OpenMetadataApplicationConfig config) {
for (App installedApp : repository.listAll()) {
App appWithBot = getAppForInit(installedApp.getName());
if (appWithBot == null) {
LOG.error(String.format("Failed to init app [%s]. GET should return the installed app", installedApp.getName()));
LOG.error(
String.format(
"Failed to init app [%s]. GET should return the installed app",
installedApp.getName()));
} else {
setAppRuntimeProperties(appWithBot);
ApplicationHandler.runAppInit(appWithBot, dao, searchRepository);
Expand Down

0 comments on commit f31ddf7

Please sign in to comment.