Console: Register all webapps with port mapper (ticket #1749)

This commit is contained in:
zzz
2018-03-14 12:23:37 +00:00
parent 74ea45901a
commit 9b3082be06
5 changed files with 42 additions and 5 deletions

View File

@@ -541,7 +541,7 @@ public class PluginStarter implements Runnable {
Iterator <String> wars = pluginWars.get(appName).iterator();
while (wars.hasNext()) {
String warName = wars.next();
WebAppStarter.stopWebApp(warName);
WebAppStarter.stopWebApp(ctx, warName);
}
pluginWars.get(appName).clear();
}