I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit a0d6741f authored by zzz's avatar zzz
Browse files

fix wrong prefix for startOnLoad in plugin webapps.config

parent 63562ddd
No related branches found
No related tags found
No related merge requests found
......@@ -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();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment