rollback changes to actix-web, awc and test-server for now

This commit is contained in:
Maksym Vorobiov 2020-01-31 10:29:10 +02:00 committed by Yuki Okushi
parent 62aba424e2
commit 09a391a3ca
6 changed files with 27 additions and 30 deletions

View file

@ -383,7 +383,7 @@ where
{
pub fn new(stream: S) -> Self {
BodyStream {
stream: Box::pin(stream),
stream,
_t: PhantomData,
}
}
@ -420,7 +420,8 @@ where
#[pin_project]
pub struct SizedStream<S: Unpin> {
size: u64,
stream: Pin<Box<S>>,
#[pin]
stream: S,
}
impl<S> SizedStream<S>
@ -428,10 +429,7 @@ where
S: Stream<Item = Result<Bytes, Error>> + Unpin,
{
pub fn new(size: u64, stream: S) -> Self {
SizedStream {
size,
stream: Box::pin(stream),
}
SizedStream { size, stream }
}
}

View file

@ -81,6 +81,9 @@ async fn service(msg: ws::Frame) -> Result<ws::Message, Error> {
Ok(msg)
}
/*
Temporarily commented out due to dependency on actix-http-test
#[actix_rt::test]
async fn test_simple() {
let ws_service = WsService::new();
@ -192,3 +195,5 @@ async fn test_simple() {
assert!(ws_service.was_polled());
}
*/