forked from I2P_Developers/i2p.i2p
* i2psnark: Lower threshold for auto-stop
* Update: All updates via torrent
This commit is contained in:
@ -509,7 +509,7 @@ public class TrackerClient implements Runnable {
|
||||
coordinator.getPeerCount() <= 0 &&
|
||||
_util.getContext().clock().now() > _startedOn + 2*60*60*1000 &&
|
||||
snark.getTotalLength() > 0 &&
|
||||
uploaded >= 2 * snark.getTotalLength()) {
|
||||
uploaded >= snark.getTotalLength() * 3 / 2) {
|
||||
if (_log.shouldLog(Log.WARN))
|
||||
_log.warn("Auto stopping " + snark.getBaseName());
|
||||
snark.setAutoStoppable(false);
|
||||
|
Reference in New Issue
Block a user