1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-24 16:02:59 +01:00
This commit is contained in:
Nikolay Kim 2018-08-31 18:56:53 -07:00
commit 6464f96f8b

View File

@ -186,7 +186,7 @@ where
Ok(Async::NotReady) => return Ok(Async::NotReady), Ok(Async::NotReady) => return Ok(Async::NotReady),
Ok(Async::Ready(_)) => return Ok(Async::Ready(())), Ok(Async::Ready(_)) => return Ok(Async::Ready(())),
Err(err) => { Err(err) => {
debug!("Error sendips ng data: {}", err); debug!("Error sending data: {}", err);
return Err(()); return Err(());
} }
} }