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

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

clogged job queue fix 2nd try

parent e6d44a61
No related branches found
No related tags found
No related merge requests found
......@@ -77,10 +77,13 @@ class StartExplorersJob extends JobImpl {
* we'll explore appropriately.
*/
public void updateExploreSchedule() {
long delay = getNextRunDelay();
if (_log.shouldLog(Log.DEBUG))
_log.debug("Updating exploration schedule with a delay of " + delay);
requeue(delay);
// This is playing havoc with the JobQueue and putting this job out-of-order
// since we switched to a TreeSet,
// so just let runJob() above do the scheduling.
//long delay = getNextRunDelay();
//if (_log.shouldLog(Log.DEBUG))
// _log.debug("Updating exploration schedule with a delay of " + delay);
//requeue(delay);
}
/**
......
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