mirror of
https://github.com/ntex-rs/ntex-extras.git
synced 2025-04-05 22:07:40 +03:00
rollback changes to actix-web, awc and test-server for now
This commit is contained in:
parent
62aba424e2
commit
09a391a3ca
6 changed files with 27 additions and 30 deletions
|
@ -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 }
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -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());
|
||||
}
|
||||
|
||||
*/
|
Loading…
Add table
Add a link
Reference in a new issue