disables termination of connections that return bad handles

This commit is contained in:
Peter Thorson
2013-03-30 07:56:50 -05:00
parent 924bb1a050
commit 3eef03d31e

View File

@@ -105,13 +105,13 @@ public:
// This really shouldn't happen
endpoint_type::m_elog.write(log::elevel::fatal,
"handle_accept got an invalid handle back");
con->terminate();
//con->terminate();
} else if (hdl_ec) {
// There was some other unknown error attempting to convert the hdl
// to a connection.
endpoint_type::m_elog.write(log::elevel::fatal,
"handle_accept error in get_con_from_hdl: "+hdl_ec.message());
con->terminate();
//con->terminate();
} else {
if (ec) {
con->terminate();