402844 STOP.PORT & STOP.KEY behaviour has changed

This commit is contained in:
Jan Bartel 2013-03-15 14:38:53 +11:00
parent 5084a1430f
commit 41feea7e01
2 changed files with 6 additions and 4 deletions

View File

@ -261,10 +261,12 @@ public class Server extends HandlerWrapper implements Attributes
@Override
protected void doStart() throws Exception
{
if (getStopAtShutdown()) {
ShutdownThread.register(this);
ShutdownMonitor.getInstance().start(); // initialize
if (getStopAtShutdown())
{
ShutdownThread.register(this);
}
ShutdownMonitor.getInstance().start(); // initialize
LOG.info("jetty-"+__version);
HttpGenerator.setServerVersion(__version);

View File

@ -75,7 +75,7 @@ public class ShutdownMonitor extends Thread
// Use values passed thru via /jetty-start/
this.port = Integer.parseInt(props.getProperty("STOP.PORT","-1"));
this.key = props.getProperty("STOP.KEY","eclipse");
this.key = props.getProperty("STOP.KEY",null);
this.exitVm = true;
}