fix wrong prefix for startOnLoad in plugin webapps.config

This commit is contained in:
zzz
2010-04-12 21:11:22 +00:00
parent 63562ddd48
commit a0d6741ff5

View File

@ -126,7 +126,7 @@ public class PluginStarter implements Runnable {
log.error("Skipping duplicate webapp " + warName + " in plugin " + appName);
continue;
}
String enabled = props.getProperty(PREFIX + warName + ENABLED);
String enabled = props.getProperty(RouterConsoleRunner.PREFIX + warName + ENABLED);
if (! "false".equals(enabled)) {
//log.error("Starting webapp: " + warName);
String path = new File(webappDir, fileNames[i]).getCanonicalPath();