mirror of
https://github.com/fafhrd91/actix-net
synced 2025-06-26 22:07:42 +02:00
update tokio verion and prep alpha3 release
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
# Changes
|
||||
|
||||
## [1.0.0-alpha.3] - 2019-12-xx
|
||||
## [1.0.0-alpha.3] - 2019-12-06
|
||||
|
||||
### Changed
|
||||
|
||||
|
@ -81,7 +81,7 @@ where
|
||||
{
|
||||
A(#[pin] A::Future, Option<Cell<B>>),
|
||||
B(#[pin] B::Future),
|
||||
Empty
|
||||
Empty,
|
||||
}
|
||||
|
||||
impl<A, B> Future for ThenServiceResponse<A, B>
|
||||
@ -111,7 +111,7 @@ where
|
||||
this.state.set(State::Empty);
|
||||
r
|
||||
}),
|
||||
State::Empty => panic!("future must not be polled after it returned `Poll::Ready`")
|
||||
State::Empty => panic!("future must not be polled after it returned `Poll::Ready`"),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user