diff --git a/src/pipeline.rs b/src/pipeline.rs index bd7801a36..b895be8c6 100644 --- a/src/pipeline.rs +++ b/src/pipeline.rs @@ -482,10 +482,14 @@ impl ProcessResponse { } match self.resp.replace_body(Body::Empty) { - Body::Streaming(stream) => - self.iostate = IOState::Payload(stream), - Body::Actor(ctx) => - self.iostate = IOState::Actor(ctx), + Body::Streaming(stream) => { + self.iostate = IOState::Payload(stream); + continue + }, + Body::Actor(ctx) => { + self.iostate = IOState::Actor(ctx); + continue + }, _ => (), }