I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit fb7c06aa authored by jrandom's avatar jrandom Committed by zzz
Browse files

throw in a 10 second pause between starting up each router to try and avoid too much synchronicity

parent 5c41be34
No related branches found
No related tags found
No related merge requests found
......@@ -70,7 +70,7 @@ public class MultiRouter {
for (int i = 0; i < _routers.size(); i++) {
((Router)_routers.get(i)).runRouter();
//try { Thread.sleep(10*1000); } catch (InterruptedException ie) {}
try { Thread.sleep(10*1000); } catch (InterruptedException ie) {}
}
_log.info("All " + _routers.size() + " routers started up");
waitForCompletion();
......@@ -93,7 +93,8 @@ public class MultiRouter {
for (int i = 0; i < _routers.size(); i++) {
Router r = (Router)_routers.get(i);
if (!r.isAlive()) {
_log.info("Router " + i + " is dead");
if (_log.shouldLog(Log.INFO))
_log.info("Router " + i + " is dead");
} else {
alive++;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment