diff --git a/http-full-proxy/src/main.rs b/http-full-proxy/src/main.rs index 68a7d815..4ab76df8 100644 --- a/http-full-proxy/src/main.rs +++ b/http-full-proxy/src/main.rs @@ -32,7 +32,7 @@ fn forward( { client_resp.header(header_name.clone(), header_value.clone()); } - client_resp.streaming(res) + HttpResponse::Ok().streaming(res) }) }