mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
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:
@@ -29,6 +29,8 @@ public class ClusterConfigBean
|
||||
private boolean isClusterEnabled = false;
|
||||
private String configFile;
|
||||
private String clusterName;
|
||||
private String debugFlags;
|
||||
private int nearCacheTimeout;
|
||||
|
||||
public void setClusterEnabled(boolean clusterEnabled)
|
||||
{
|
||||
@@ -59,4 +61,24 @@ public class ClusterConfigBean
|
||||
{
|
||||
return configFile;
|
||||
}
|
||||
|
||||
public void setDebugFlags(String debugFlags)
|
||||
{
|
||||
this.debugFlags = debugFlags;
|
||||
}
|
||||
|
||||
public String getDebugFlags()
|
||||
{
|
||||
return debugFlags;
|
||||
}
|
||||
|
||||
public void setNearCacheTimeout(int nearCacheTimeout)
|
||||
{
|
||||
this.nearCacheTimeout = nearCacheTimeout;
|
||||
}
|
||||
|
||||
public int getNearCacheTimeout()
|
||||
{
|
||||
return nearCacheTimeout;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user