Commit bbe64a3b authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gaston

Moved ConnectionManagerImpl module to the end of the list to ensure that...

Moved ConnectionManagerImpl module to the end of the list to ensure that clients are able to connect once the server has been fully started.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@1374 b35dd754-fafc-0310-a699-88a17e54d16e
parent 011f3d57
......@@ -233,7 +233,6 @@ public class XMPPServer {
loadModule(RosterManager.class.getName());
loadModule(PrivateStorage.class.getName());
// Load core modules
loadModule(ConnectionManagerImpl.class.getName());
loadModule(PresenceManagerImpl.class.getName());
loadModule(SessionManager.class.getName());
loadModule(PacketRouter.class.getName());
......@@ -259,6 +258,9 @@ public class XMPPServer {
loadModule(IQDiscoItemsHandler.class.getName());
loadModule(MultiUserChatServerImpl.class.getName());
loadModule(MulticastDNSService.class.getName());
// Load this module always last since we don't want to start listening for clients
// before the rest of the modules have been started
loadModule(ConnectionManagerImpl.class.getName());
}
/**
......
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