From 8aa20c626196d109ad4e4932a0ba7eb49463a4e4 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Sun, 29 Oct 2017 20:54:52 -0700 Subject: [PATCH] disable print --- src/server.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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,