提交 2eef6925 authored 作者: Thomas Mueller's avatar Thomas Mueller

Ensure the profiler is stopped.

上级 4aee768f
......@@ -793,9 +793,12 @@ public class WebApp implements DatabaseEventListener {
try {
Profiler profiler = new Profiler();
profiler.startCollecting();
Connection conn = server.getConnection(driver, url, user, password, this);
JdbcUtils.closeSilently(conn);
profiler.stopCollecting();
try {
Connection conn = server.getConnection(driver, url, user, password, this);
JdbcUtils.closeSilently(conn);
} finally {
profiler.stopCollecting();
}
String success = "<a class=\"error\" href=\"#\" onclick=\"var x=document.getElementById('prof').style;x.display=x.display==''?'none':'';\">" +
"${text.login.testSuccessful}</a>" +
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论