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

Skip to content
Snippets Groups Projects
Commit af7eaf1f authored by zzz's avatar zzz
Browse files

* BuildRequestor: Slow down build loop if we have no exploratory tunnels

                   (ticket #926)
parent c198e216
No related branches found
No related tags found
No related merge requests found
......@@ -138,6 +138,9 @@ abstract class BuildRequestor {
if (log.shouldLog(Log.ERROR))
log.error("Tunnel build failed, as we couldn't find a paired tunnel for " + cfg);
exec.buildComplete(cfg, pool);
// Not even a zero-hop exploratory tunnel? We are in big trouble.
// Let's not spin through here too fast.
try { Thread.sleep(250); } catch (InterruptedException ie) {}
return;
}
......
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