Add some more todo

This commit is contained in:
Lucio Franco
2019-09-04 19:06:48 -04:00
parent 1d982126e2
commit 011a148f97
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -216,6 +216,7 @@ fn generate_unary(
Ok(res)
};
// TODO: implement this future manually
Box::pin(fut)
}
}
+1
View File
@@ -43,6 +43,7 @@ impl Service<Request<BoxBody>> for Connection {
fn call(&mut self, req: Request<BoxBody>) -> Self::Future {
let fut = self.inner.call(req);
// TODO: we dont need to box here if we have too
Box::pin(fut)
}
}