From 5bc2dab1d2be6177b5a8e3410d8eb5de5bcfa3df Mon Sep 17 00:00:00 2001 From: zzz <zzz@mail.i2p> Date: Wed, 19 Aug 2009 15:26:35 +0000 Subject: [PATCH] * profiles.jsp: - Rename the Failing column - Reduce the time cutoff again to 90m (was 2h) --- .../i2p/router/peermanager/ProfileOrganizerRenderer.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/router/java/src/net/i2p/router/peermanager/ProfileOrganizerRenderer.java b/router/java/src/net/i2p/router/peermanager/ProfileOrganizerRenderer.java index 14abdb5fe9..500ec5c8ee 100644 --- a/router/java/src/net/i2p/router/peermanager/ProfileOrganizerRenderer.java +++ b/router/java/src/net/i2p/router/peermanager/ProfileOrganizerRenderer.java @@ -33,7 +33,7 @@ class ProfileOrganizerRenderer { Set peers = _organizer.selectAllPeers(); long now = _context.clock().now(); - long hideBefore = now - 2*60*60*1000; + long hideBefore = now - 90*60*1000; TreeSet order = new TreeSet(_comparator); TreeSet integratedPeers = new TreeSet(_comparator); @@ -66,7 +66,7 @@ class ProfileOrganizerRenderer { "<th>Speed</th>" + "<th>Capacity</th>" + "<th>Integration</th>" + - "<th>Failing?</th>" + + "<th>Status</th>" + "<th> </th>" + "</tr>"); int prevTier = 1; @@ -228,7 +228,7 @@ class ProfileOrganizerRenderer { "<li><b>speed</b>: peak throughput (bytes per second) over a 1 minute period that the peer has sustained in a single tunnel</li>" + "<li><b>capacity</b>: how many tunnels can we ask them to join in an hour?</li>" + "<li><b>integration</b>: how many new peers have they told us about lately?</li>" + - "<li><b>failing?</b>: is the peer currently swamped (and if possible we should avoid nagging them)?</li>" + + "<li><b>status</b>: is the peer banned, or unreachable, or failing tunnel tests?</li>" + "</ul></i>"); out.write(buf.toString()); out.flush(); -- GitLab