Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
BLasan committed Oct 29, 2024
1 parent eba3229 commit 5ae0f34
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -222,9 +222,12 @@ public void completedServerStartup() {
jmsTransportHandlerForEventHub.subscribeForJmsEvents(APIConstants.TopicNames.TOPIC_ASYNC_WEBHOOKS_DATA,
new GatewayJMSMessageListener());
copyTenantArtifacts();
APILoggerManager.getInstance().initializeAPILoggerList();
LLMProviderManager.getInstance().initializeLLMProviderConfigurations(
MultitenantConstants.SUPER_TENANT_DOMAIN_NAME);
Thread thread = new Thread(() -> {
APILoggerManager.getInstance().initializeAPILoggerList();
LLMProviderManager.getInstance().initializeLLMProviderConfigurations(
MultitenantConstants.SUPER_TENANT_DOMAIN_NAME);
});
thread.start();
} else {
log.info("Running on migration enabled mode: Stopped at Gateway Startup listener completed");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,11 @@ public void completedServerStartup() {
} else {
log.info("Running on migration enabled mode: Stopped at ServerStartupListener completed");
}
CorrelationConfigManager.getInstance().initializeCorrelationComponentList();

Thread thread = new Thread(() -> {
CorrelationConfigManager.getInstance().initializeCorrelationComponentList();
});
thread.start();
}

/**
Expand Down

0 comments on commit 5ae0f34

Please sign in to comment.