Commit d4e1d4c1 authored by Matt Tucker's avatar Matt Tucker Committed by matt

git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@2990 b35dd754-fafc-0310-a699-88a17e54d16e
parent 711d4d8f
......@@ -33,9 +33,15 @@
String value = (String)xmlSettings.get(name);
JiveGlobals.setXMLProperty(name, value);
}
// Shut down connection provider. Some connection providers (such as the
// embedded provider) require a clean shut-down.
DbConnectionManager.getConnectionProvider().destroy();
Runnable restart = new Runnable() {
public void run() {
// Shut down connection provider. Some connection providers (such as the
// embedded provider) require a clean shut-down.
DbConnectionManager.getConnectionProvider().destroy();
XMPPServer.getInstance().finishSetup();
}
};
new Thread(restart).start();
%>
<%@ include file="setup-header.jspf" %>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment