diff --git a/proxy/src/outbound.rs b/proxy/src/outbound.rs index 244f6e55d..b41e90d84 100644 --- a/proxy/src/outbound.rs +++ b/proxy/src/outbound.rs @@ -56,21 +56,6 @@ pub enum Destination { External(SocketAddr), } -impl From for Destination { - #[inline] - fn from(authority: FullyQualifiedAuthority) -> Self { - Destination::LocalSvc(authority) - } -} - -impl From for Destination { - #[inline] - fn from(addr: SocketAddr) -> Self { - Destination::External(addr) - } -} - - impl Recognize for Outbound where B: tower_h2::Body + 'static,