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 15, 2024
1 parent 9d84dfb commit 3d6abd7
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 3d6abd7

Please sign in to comment.