Skip to content

Commit

Permalink
post-merge fix
Browse files Browse the repository at this point in the history
  • Loading branch information
paulgb committed Jul 9, 2024
1 parent 9326f4d commit bb8aef5
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions plane/src/controller/proxy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,21 +112,6 @@ pub async fn handle_route_info_request(

match payload {
BackendState::Ready { address } => {
let Some(address) = address else {
tracing::error!("Received Ready notification without address");
let response = RouteInfoResponse {
token,
route_info: None,
};
if let Err(err) = socket.send(response) {
tracing::error!(
?err,
"Error sending route info response to proxy."
);
}
break;
};

let route_info = partial_route_info.set_address(address);
let response = RouteInfoResponse {
token,
Expand Down

0 comments on commit bb8aef5

Please sign in to comment.