Remove extraneous error check in advanced-server-flex

fix #1484
This commit is contained in:
Vinnie Falco
2019-02-28 07:54:20 -08:00
parent f611807bc0
commit 16280f9991
2 changed files with 6 additions and 4 deletions

View File

@ -1,3 +1,9 @@
Version 224:
* Remove extraneous error check in advanced-server-flex
--------------------------------------------------------------------------------
Version 223:
* Add test::stream::service

View File

@ -637,10 +637,6 @@ public:
{
boost::ignore_unused(bytes_transferred);
// Happens when the timer closes the socket
if(ec == net::error::operation_aborted)
return;
if(ec)
return fail(ec, "write");