forked from I2P_Developers/i2p.i2p
2005-01-09 jrandom
* Removed a longstanding bug that had caused unnecessary router identity churn due to clock skew * Temporarily sanity check within the streaming lib for long pending writes * Added support for a blog-wide logo to Syndie, and automated the pushing of updated extended blog info data along side the metadata.
This commit is contained in:
@@ -15,9 +15,9 @@ import net.i2p.CoreVersion;
|
||||
*
|
||||
*/
|
||||
public class RouterVersion {
|
||||
public final static String ID = "$Revision: 1.325 $ $Date: 2006/01/04 21:48:17 $";
|
||||
public final static String ID = "$Revision: 1.326 $ $Date: 2006/01/09 01:33:30 $";
|
||||
public final static String VERSION = "0.6.1.8";
|
||||
public final static long BUILD = 9;
|
||||
public final static long BUILD = 10;
|
||||
public static void main(String args[]) {
|
||||
System.out.println("I2P Router version: " + VERSION + "-" + BUILD);
|
||||
System.out.println("Router ID: " + RouterVersion.ID);
|
||||
|
@@ -303,8 +303,9 @@ public class KademliaNetworkDatabaseFacade extends NetworkDatabaseFacade {
|
||||
try {
|
||||
publish(ri);
|
||||
} catch (IllegalArgumentException iae) {
|
||||
_log.log(Log.CRIT, "Our local router info is b0rked, clearing from scratch", iae);
|
||||
_context.router().rebuildNewIdentity();
|
||||
_context.router().rebuildRouterInfo(true);
|
||||
//_log.log(Log.CRIT, "Our local router info is b0rked, clearing from scratch", iae);
|
||||
//_context.router().rebuildNewIdentity();
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user