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

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

for now, lets disable the tunnel pool persistance. this means that after a...

for now, lets disable the tunnel pool persistance.  this means that after a router crashes, tunnels it was participating in will fail even if the router comes back up before they expire.
disabling this saves us some IO contention (though this may only be relevent on my kaffe box... dunno)
parent 7e2227ad
No related branches found
No related tags found
No related merge requests found
...@@ -566,7 +566,7 @@ class TunnelPool { ...@@ -566,7 +566,7 @@ class TunnelPool {
_targetClients = TARGET_CLIENTS_DEFAULT; _targetClients = TARGET_CLIENTS_DEFAULT;
} }
buildFakeTunnels(); buildFakeTunnels();
_context.jobQueue().addJob(new WritePoolJob()); //_context.jobQueue().addJob(new WritePoolJob());
_context.jobQueue().addJob(new TunnelPoolManagerJob(_context, this)); _context.jobQueue().addJob(new TunnelPoolManagerJob(_context, this));
_context.jobQueue().addJob(new TunnelPoolExpirationJob(_context, this)); _context.jobQueue().addJob(new TunnelPoolExpirationJob(_context, this));
} }
......
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