mirror of
https://github.com/actix/actix-web.git
synced 2024-11-03 15:39:50 +00:00
remove debug println
This commit is contained in:
parent
30769e3072
commit
992f7a11b3
2 changed files with 0 additions and 2 deletions
|
@ -446,7 +446,6 @@ impl<S: 'static, H> ProcessResponse<S, H> {
|
||||||
fn poll(
|
fn poll(
|
||||||
&mut self, info: &mut PipelineInfo<S>, mws: &[Box<Middleware<S>>],
|
&mut self, info: &mut PipelineInfo<S>, mws: &[Box<Middleware<S>>],
|
||||||
) -> Option<PipelineState<S, H>> {
|
) -> Option<PipelineState<S, H>> {
|
||||||
println!("POLL");
|
|
||||||
// connection is dead at this point
|
// connection is dead at this point
|
||||||
match mem::replace(&mut self.iostate, IOState::Done) {
|
match mem::replace(&mut self.iostate, IOState::Done) {
|
||||||
IOState::Response =>
|
IOState::Response =>
|
||||||
|
|
|
@ -406,7 +406,6 @@ impl<H: HttpHandler + 'static> Entry<H> {
|
||||||
}
|
}
|
||||||
Ok(Async::NotReady) => break,
|
Ok(Async::NotReady) => break,
|
||||||
Err(err) => {
|
Err(err) => {
|
||||||
println!("POLL-PAYLOAD error: {:?}", err);
|
|
||||||
self.payload.set_error(PayloadError::Http2(err));
|
self.payload.set_error(PayloadError::Http2(err));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue