* Start of 0.9.7.1 branch

* i2psnark: Increase update-via-torrent to 30%
This commit is contained in:
zzz
2013-08-07 17:36:55 +00:00
parent 20e152e79a
commit cdccb51456

View File

@ -567,8 +567,9 @@ public class ConsoleUpdateManager implements UpdateManager {
// For 0.9.4 update, only for dev builds // For 0.9.4 update, only for dev builds
// For 0.9.5 update, only for dev builds and 1% more // For 0.9.5 update, only for dev builds and 1% more
// For 0.9.6 update, only for dev builds and 3% more // For 0.9.6 update, only for dev builds and 3% more
// Remove this in 0.9.6 or 0.9.7 // For 0.9.8 update, only for dev builds and 30% more
if (method == TORRENT && RouterVersion.BUILD == 0 && _context.random().nextInt(100) > 2) { // Remove this for 100%
if (method == TORRENT && RouterVersion.BUILD == 0 && _context.random().nextInt(100) > 29) {
if (_log.shouldLog(Log.WARN)) if (_log.shouldLog(Log.WARN))
_log.warn("Ignoring torrent registration"); _log.warn("Ignoring torrent registration");
return; return;