2
0
mirror of https://github.com/boostorg/mysql.git synced 2026-02-13 12:32:18 +00:00

quit_connection async bug

This commit is contained in:
Ruben Perez
2022-10-16 18:45:56 +02:00
parent 930d50d8c8
commit 19bb320b7f

View File

@@ -52,8 +52,9 @@ struct quit_connection_op : boost::asio::coroutine
if (chan_.stream().ssl_active())
{
BOOST_ASIO_CORO_YIELD chan_.stream().async_shutdown(std::move(self));
self.complete(error_code());
}
self.complete(error_code());
}
}
};