Filesystem changes.

a) Fixed bug if IOControlHandler threw IOControlNotImplementedException
   b) Cluster cache initialisation for all filesystem contexts.
   c) Don't attempt to start the filesystem if the cluster config fails.
   d) addition of new property for cluster debug (filesystem.cluster.debugFlags)
   e) Changed the property name from  filesystem.cluster.config to filesystem.cluster.configFile

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@29946 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Mark Rogers
2011-08-22 13:04:18 +00:00
parent a9229b3ed6
commit 318cfae1b1
6 changed files with 163 additions and 104 deletions

View File

@@ -442,22 +442,6 @@ public abstract class AbstractServerConfigurationBean extends ServerConfiguratio
// Initialize the filesystems
try
{
// Process the Cluster configuration
processClusterConfig();
// Log the successful startup
// logger.info("JLAN Cluster started");
}
catch (Exception ex)
{
// Configuration error
logger.error("Cluster configuration error, " + ex.getMessage(), ex);
}
try
{
// Process the core server configuration
@@ -465,6 +449,9 @@ public abstract class AbstractServerConfigurationBean extends ServerConfiguratio
// Process the security configuration
processSecurityConfig();
// Process the Cluster configuration
processClusterConfig();
// Process the filesystems configuration
processFilesystemsConfig();