1
0
mirror of https://github.com/actix/examples synced 2025-01-22 22:05:57 +01:00

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

Revert "fix streaming issue in http-full-proxy example"
This commit is contained in:
Nikolay Kim 2019-05-21 14:14:10 -07:00 committed by GitHub
commit 49fc6df226
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());
}
HttpResponse::Ok().streaming(res)
client_resp.streaming(res)
})
}