提交 5d4fcfe8 authored 作者: Thomas Mueller Graf's avatar Thomas Mueller Graf

Server mode: executing shutdown left a thread on the server.

上级 79ea94ee
...@@ -21,6 +21,8 @@ Change Log ...@@ -21,6 +21,8 @@ Change Log
<h2>Next Version (unreleased)</h2> <h2>Next Version (unreleased)</h2>
<ul> <ul>
<li>Server mode: executing "shutdown" left a thread on the server.
</li>
<li>The condition "in(select...)" did not work correctly in some cases if the subquery had an "order by". <li>The condition "in(select...)" did not work correctly in some cases if the subquery had an "order by".
</li> </li>
<li>Issue #184: The Platform-independent zip had Windows line endings in Linux scripts. <li>Issue #184: The Platform-independent zip had Windows line endings in Linux scripts.
......
...@@ -347,6 +347,7 @@ public class TcpServerThread implements Runnable { ...@@ -347,6 +347,7 @@ public class TcpServerThread implements Runnable {
int status; int status;
if (session.isClosed()) { if (session.isClosed()) {
status = SessionRemote.STATUS_CLOSED; status = SessionRemote.STATUS_CLOSED;
stop = true;
} else { } else {
status = getState(old); status = getState(old);
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论