mirror of
https://github.com/LibreQoE/LibreQoS.git
synced 2025-02-25 18:55:32 -06:00
Remove a mut I forgot about
This commit is contained in:
parent
b6e2091152
commit
1053693785
@ -175,7 +175,7 @@ impl ThroughputTracker {
|
|||||||
tracker.recent_rtt_data = rtt.rtt;
|
tracker.recent_rtt_data = rtt.rtt;
|
||||||
tracker.last_fresh_rtt_data_cycle = self.cycle;
|
tracker.last_fresh_rtt_data_cycle = self.cycle;
|
||||||
if let Some(parents) = &tracker.network_json_parents {
|
if let Some(parents) = &tracker.network_json_parents {
|
||||||
let mut net_json = NETWORK_JSON.write().unwrap();
|
let net_json = NETWORK_JSON.write().unwrap();
|
||||||
net_json.add_rtt_cycle(parents, tracker.median_latency());
|
net_json.add_rtt_cycle(parents, tracker.median_latency());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user