1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-08-02 10:45:05 +00:00

remove debug println

This commit is contained in:
Nikolay Kim 2018-08-07 22:40:09 -07:00
parent 30769e3072
commit 992f7a11b3
2 changed files with 0 additions and 2 deletions

View file

@ -446,7 +446,6 @@ impl<S: 'static, H> ProcessResponse<S, H> {
fn poll(
&mut self, info: &mut PipelineInfo<S>, mws: &[Box<Middleware<S>>],
) -> Option<PipelineState<S, H>> {
println!("POLL");
// connection is dead at this point
match mem::replace(&mut self.iostate, IOState::Done) {
IOState::Response =>

View file

@ -406,7 +406,6 @@ impl<H: HttpHandler + 'static> Entry<H> {
}
Ok(Async::NotReady) => break,
Err(err) => {
println!("POLL-PAYLOAD error: {:?}", err);
self.payload.set_error(PayloadError::Http2(err));
break;
}