提交 4913216b 编写于 作者: T tanghai

accept要catch异常,避免异常导致无法继续接收连接

上级 97f8dc7d
......@@ -66,7 +66,14 @@ namespace ETModel
return;
}
await this.Accept();
try
{
await this.Accept();
}
catch (Exception e)
{
Log.Error(e);
}
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册