From 1f5629a8c32b8460c8f988ad29e1083b6fd35b3c Mon Sep 17 00:00:00 2001 From: Herbert Wolverson Date: Fri, 24 Feb 2023 15:02:57 +0000 Subject: [PATCH] Tweak to previous commit: I didn't intend to filter out no-RTT hosts from the top downloaders list, since they might be non-TCP traffic. --- src/rust/lqosd/src/throughput_tracker/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/rust/lqosd/src/throughput_tracker/mod.rs b/src/rust/lqosd/src/throughput_tracker/mod.rs index 53a29c38..34e1665a 100644 --- a/src/rust/lqosd/src/throughput_tracker/mod.rs +++ b/src/rust/lqosd/src/throughput_tracker/mod.rs @@ -74,7 +74,6 @@ pub fn top_n(start: u32, end: u32) -> BusResponse { .iter() .filter(|(ip, _)| !ip.as_ip().is_loopback()) .filter(|(_, d)| retire_check(tp.cycle, d.most_recent_cycle)) - .filter(|(_, te)| te.median_latency() > 0.0) .map(|(ip, te)| { ( *ip,