Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MINOR - Prepare App Instances & fix bigtable json #15292

Merged
merged 8 commits into from
Feb 23, 2024
Prev Previous commit
Format
pmbrull committed Feb 22, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit f31ddf7accf914151e3cf021b8888e4d9f8edf5f
Original file line number Diff line number Diff line change
@@ -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);