Merge 3.2 to HEAD:

17444: (record-only)
    18955: If CIFS is not enabled then do not create the thread/memory pools during startup. ALF-585.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@19138 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Gary Spencer
2010-03-09 09:49:02 +00:00
parent 22981d78a1
commit 4eeef21b55

View File

@@ -1793,6 +1793,11 @@ public class ServerConfigurationBean extends AbstractServerConfigurationBean
CoreServerConfigSection coreConfig = new CoreServerConfigSection(this);
// Check if the CIFS server is not enabled, do not create the thread/memory pools
if ( cifsConfigBean == null || cifsConfigBean.getServerEnabled() == false)
return;
// Check if the server core element has been specified
if (coreServerConfigBean == null)