add msg when stopping tunnel on idle

This commit is contained in:
zzz
2013-10-04 16:50:37 +00:00
parent e755051ebe
commit e1d808a284
2 changed files with 8 additions and 5 deletions

View File

@ -180,7 +180,7 @@ public class SnarkManager implements CompleteListener {
_context.simpleScheduler().addEvent(new Register(), 4*60*1000);
// Not required, Jetty has a shutdown hook
//_context.addShutdownTask(new SnarkManagerShutdown());
_idleChecker = new IdleChecker(_util, _peerCoordinatorSet);
_idleChecker = new IdleChecker(this, _peerCoordinatorSet);
_idleChecker.schedule(5*60*1000);
}