mirror of
https://github.com/actix/actix-web.git
synced 2024-11-18 15:41:17 +00:00
use actix 0.5.4
This commit is contained in:
parent
381b90e9a1
commit
1fe4315c94
3 changed files with 4 additions and 5 deletions
|
@ -42,7 +42,7 @@ session = ["cookie/secure"]
|
|||
brotli = ["brotli2"]
|
||||
|
||||
[dependencies]
|
||||
actix = "^0.5.2"
|
||||
actix = "^0.5.4"
|
||||
|
||||
base64 = "0.9"
|
||||
bitflags = "1.0"
|
||||
|
|
|
@ -188,7 +188,7 @@ impl<A, S> ActorHttpContext for HttpContext<A, S> where A: Actor<Context=Self>,
|
|||
mem::transmute(self as &mut HttpContext<A, S>)
|
||||
};
|
||||
|
||||
if !self.inner.started() || self.inner.started() && self.inner.alive() {
|
||||
if self.inner.alive() {
|
||||
match self.inner.poll(ctx) {
|
||||
Ok(Async::NotReady) | Ok(Async::Ready(())) => (),
|
||||
Err(_) => return Err(ErrorInternalServerError("error").into()),
|
||||
|
|
|
@ -204,9 +204,8 @@ impl<A, S> ActorHttpContext for WebsocketContext<A, S> where A: Actor<Context=Se
|
|||
mem::transmute(self as &mut WebsocketContext<A, S>)
|
||||
};
|
||||
|
||||
if (!self.inner.started() || self.inner.started() && self.inner.alive())
|
||||
&& self.inner.poll(ctx).is_err() {
|
||||
return Err(ErrorInternalServerError("error").into())
|
||||
if self.inner.alive() && self.inner.poll(ctx).is_err() {
|
||||
return Err(ErrorInternalServerError("error").into())
|
||||
}
|
||||
|
||||
// frames
|
||||
|
|
Loading…
Reference in a new issue