add streaming body to requests and responses #3

Merged
lx merged 64 commits from stream-body into main 2022-09-13 10:56:54 +00:00
Showing only changes of commit 298e956a19 - Show all commits

View file

@ -132,7 +132,7 @@ impl ServerConn {
let handler_opt = {
let endpoints = self.netapp.endpoints.read().unwrap();
endpoints.get(&path[..]).map(|e| e.clone_endpoint())
endpoints.get(&path).map(|e| e.clone_endpoint())
};
if let Some(handler) = handler_opt {