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

Revert "fix streaming issue in http-full-proxy example"

This commit is contained in:
Đorđe Zeljić 2019-05-16 00:03:08 +02:00 committed by GitHub
parent 343e240807
commit e771c05815
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());
} }
HttpResponse::Ok().streaming(res) client_resp.streaming(res)
}) })
} }