Skip to content

Commit

Permalink
fix: Fix the upgrade plugin error when starting new server -EXO-68823
Browse files Browse the repository at this point in the history
  • Loading branch information
sofyenne committed Jan 12, 2024
1 parent e03d5bc commit c5bf191
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ public void processUpgrade(String oldVersion, String newVersion) {

PluginInfo pluginTypeConfig = findPlugin(pluginType);
List<String> usersContexts;

if (pluginTypeConfig == null) {
LOG.info("=== couldn't initialize the settings of {} , plugin is not found", pluginType);
continue;
}
entityManagerService.startRequest(currentContainer);
long startTime = System.currentTimeMillis();
do {
Expand Down

0 comments on commit c5bf191

Please sign in to comment.