From 95d6586dd776fd250133a19d5a114729eb80c88a Mon Sep 17 00:00:00 2001 From: Sagar Dhawan Date: Mon, 11 Nov 2019 14:25:25 -0800 Subject: [PATCH] Remove debug datapoint that isn't being plotted (#6873) --- core/src/repair_service.rs | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/core/src/repair_service.rs b/core/src/repair_service.rs index 905dd0912c..0d1936c7a8 100644 --- a/core/src/repair_service.rs +++ b/core/src/repair_service.rs @@ -170,15 +170,7 @@ impl RepairService { }) .collect(); - for ((to, req), repair_request) in reqs { - if let Ok(local_addr) = repair_socket.local_addr() { - datapoint_debug!( - "repair_service", - ("repair_request", format!("{:?}", repair_request), String), - ("to", to.to_string(), String), - ("from", local_addr.to_string(), String), - ); - } + for ((to, req), _) in reqs { repair_socket.send_to(&req, to).unwrap_or_else(|e| { info!("{} repair req send_to({}) error {:?}", id, to, e); 0