diff --git a/src/server.rs b/src/server.rs index a441ad7f5..713cca903 100644 --- a/src/server.rs +++ b/src/server.rs @@ -172,11 +172,11 @@ pub struct HttpChannel { keepalive_timer: Option, } -impl Drop for HttpChannel { +/*impl Drop for HttpChannel { fn drop(&mut self) { println!("Drop http channel"); } -} +}*/ impl Actor for HttpChannel where T: AsyncRead + AsyncWrite + 'static,