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

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

reduce auto-stop threshold again

parent 78d72772
No related branches found
No related tags found
No related merge requests found
...@@ -528,9 +528,9 @@ public class TrackerClient implements Runnable { ...@@ -528,9 +528,9 @@ public class TrackerClient implements Runnable {
!snark.isChecking() && !snark.isChecking() &&
info.getSeedCount() > 100 && info.getSeedCount() > 100 &&
coordinator.getPeerCount() <= 0 && coordinator.getPeerCount() <= 0 &&
_util.getContext().clock().now() > _startedOn + 2*60*60*1000 && _util.getContext().clock().now() > _startedOn + 30*60*1000 &&
snark.getTotalLength() > 0 && snark.getTotalLength() > 0 &&
uploaded >= snark.getTotalLength() * 5 / 4) { uploaded >= snark.getTotalLength() / 2) {
if (_log.shouldLog(Log.WARN)) if (_log.shouldLog(Log.WARN))
_log.warn("Auto stopping " + snark.getBaseName()); _log.warn("Auto stopping " + snark.getBaseName());
snark.setAutoStoppable(false); snark.setAutoStoppable(false);
......
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