Author: toad
Date: 2007-08-11 20:10:12 +0000 (Sat, 11 Aug 2007)
New Revision: 14634
Modified:
trunk/freenet/src/freenet/node/NodeIPDetector.java
Log:
It can take a while to start the insert.
Modified: trunk/freenet/src/freenet/node/NodeIPDetector.java
===================================================================
--- trunk/freenet/src/freenet/node/NodeIPDetector.java 2007-08-11 20:04:22 UTC
(rev 14633)
+++ trunk/freenet/src/freenet/node/NodeIPDetector.java 2007-08-11 20:10:12 UTC
(rev 14634)
@@ -392,7 +392,8 @@
node.executor.execute(ipDetector, "IP address re-detector");
redetectAddress();
// 60 second delay for inserting ARK to avoid reinserting more
than necessary if we don't detect IP on startup.
- node.getTicker().queueTimedJob(new FastRunnable() {
+ // Not a FastRunnable as it can take a while to start the insert
+ node.getTicker().queueTimedJob(new Runnable() {
public void run() {
NodeIPPortDetector[] detectors;
synchronized(this) {