* 2005-09-29 0.6.1 released

2005-09-29  jrandom
    * Let syndie users modify their metadata.
    * Reseed the router on startup if there aren't enough peer references
      known locally.  This can be disabled by creating the file .i2pnoreseed
      in your home directory, and the existing detection and reseed handling
      on the web interface is unchanged.
This commit is contained in:
jrandom
2005-09-29 19:24:43 +00:00
committed by zzz
parent 848ead7683
commit c528e4db03

View File

@ -115,9 +115,9 @@ public class ClientConnectionRunner {
/** die a horrible death */
void stopRunning() {
if (_dead) return;
if (_context.router().isAlive())
_log.error("Stop the I2CP connection! current leaseSet: "
+ _currentLeaseSet, new Exception("Stop client connection"));
if (_context.router().isAlive() && _log.shouldLog(Log.WARN))
_log.warn("Stop the I2CP connection! current leaseSet: "
+ _currentLeaseSet, new Exception("Stop client connection"));
_dead = true;
// we need these keys to unpublish the leaseSet
if (_reader != null) _reader.stopReading();