1
0
mirror of https://github.com/actix/examples synced 2025-03-15 09:13:06 +01:00

Merge pull request #120 from zeljic/fix-http-full-proxy-streaming

fix streaming issue in http-full-proxy example
This commit is contained in:
Nikolay Kim 2019-05-12 18:52:31 -07:00 committed by GitHub
commit 343e240807
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,7 +32,7 @@ fn forward(
{ {
client_resp.header(header_name.clone(), header_value.clone()); client_resp.header(header_name.clone(), header_value.clone());
} }
client_resp.streaming(res) HttpResponse::Ok().streaming(res)
}) })
} }