mirror of
https://github.com/i2p/i2p.i2p.git
synced 2026-08-28 13:44:15 +00:00
Tunnels: Change tunnel bw rate stat from 5m to 10m
To increase chance we have recent data for tunnel bw params (Prop. 168)
This commit is contained in:
@@ -327,8 +327,8 @@ class TunnelRenderer {
|
||||
RateStat ors = _context.statManager().getRate(orname);
|
||||
if (irs == null || ors == null)
|
||||
return;
|
||||
Rate ir = irs.getRate(5*60*1000L);
|
||||
Rate or = ors.getRate(5*60*1000L);
|
||||
Rate ir = irs.getRate(TunnelPool.RATE);
|
||||
Rate or = ors.getRate(TunnelPool.RATE);
|
||||
if (ir == null || or == null)
|
||||
return;
|
||||
final String tgd = _t("Graph Data");
|
||||
|
||||
Reference in New Issue
Block a user