445258 - STOP.WAIT is not really respected

Fixing stupid typo / copy / paste bug
This commit is contained in:
Joakim Erdfelt 2014-10-08 15:01:05 -07:00
parent eee2ab0f10
commit 2f696e87bd
1 changed files with 1 additions and 1 deletions

View File

@ -797,7 +797,7 @@ public class Main
if (args.getProperties().getString("STOP.WAIT") != null)
{
int stopWait = Integer.parseInt(args.getProperties().getString("STOP.PORT"));
int stopWait = Integer.parseInt(args.getProperties().getString("STOP.WAIT"));
stop(stopPort,stopKey,stopWait);
}