Merge branch 'stable-2.14' into stable-2.15

* stable-2.14:
  Fix database connection leak in suexec command

Change-Id: I98bb88ae0f89547eadb5cec764152df9f4f323b0
This commit is contained in:
David Pursehouse 2017-11-15 19:38:15 +09:00
commit d9e9eb6f4a

View File

@ -102,7 +102,7 @@ public class SshScope {
synchronized Context subContext(SshSession newSession, String newCommandLine) {
Context ctx = new Context(this, newSession, newCommandLine);
cleanup.add(ctx.cleanup);
ctx.cleanup.add(cleanup);
return ctx;
}
}