diff --git a/.travis.yml b/.travis.yml index 1d8784f93..33fe904de 100644 --- a/.travis.yml +++ b/.travis.yml @@ -47,7 +47,7 @@ script: USE_SKEPTIC=1 cargo test --features=alpn else cargo clean - cargo test + cargo test -- --nocapture # --features=alpn fi diff --git a/Cargo.toml b/Cargo.toml index a5642e507..44cd078f6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-web" -version = "0.4.1" +version = "0.4.2" authors = ["Nikolay Kim "] description = "Actix web is a small, pragmatic, extremely fast, web framework for Rust." readme = "README.md" diff --git a/src/client/pipeline.rs b/src/client/pipeline.rs index bd35d975b..baa84da9d 100644 --- a/src/client/pipeline.rs +++ b/src/client/pipeline.rs @@ -111,7 +111,7 @@ impl Future for SendRequest { _ => IoBody::Done, }; - let mut pl = Box::new(Pipeline { + let pl = Box::new(Pipeline { body, conn, writer, parser: Some(HttpResponseParser::default()), parser_buf: BytesMut::new(),