Author: stefanegli
Date: Mon Jan 26 08:43:16 2015
New Revision: 1654739
URL: http://svn.apache.org/r1654739
Log:
SLING-4350: fixed minor typo in log message
Modified:
sling/trunk/bundles/extensions/discovery/impl/src/main/java/org/apache/sling/discovery/impl/cluster/ClusterViewServiceImpl.java
Modified:
sling/trunk/bundles/extensions/discovery/impl/src/main/java/org/apache/sling/discovery/impl/cluster/ClusterViewServiceImpl.java
URL:
http://svn.apache.org/viewvc/sling/trunk/bundles/extensions/discovery/impl/src/main/java/org/apache/sling/discovery/impl/cluster/ClusterViewServiceImpl.java?rev=1654739&r1=1654738&r2=1654739&view=diff
==============================================================================
---
sling/trunk/bundles/extensions/discovery/impl/src/main/java/org/apache/sling/discovery/impl/cluster/ClusterViewServiceImpl.java
(original)
+++
sling/trunk/bundles/extensions/discovery/impl/src/main/java/org/apache/sling/discovery/impl/cluster/ClusterViewServiceImpl.java
Mon Jan 26 08:43:16 2015
@@ -134,7 +134,7 @@ public class ClusterViewServiceImpl impl
View view = ViewHelper.getEstablishedView(resourceResolver,
config);
if (view == null) {
- logger.debug("getEstablishedView: no view established at the
moment. isolated mode");
+ logger.debug("getClusterView: no view established at the
moment. isolated mode");
return getIsolatedClusterView();
}
@@ -152,7 +152,7 @@ public class ClusterViewServiceImpl impl
if (foundLocal) {
return clusterViewImpl;
} else {
- logger.info("getEstablishedView: the existing established view
does not incude the local instance yet! Assuming isolated mode. "
+ logger.info("getClusterView: the existing established view
does not incude the local instance ("+getSlingId()+") yet! Assuming isolated
mode. "
+ "If this occurs at runtime - other than at startup -
it could cause a pseudo-network-partition, see SLING-3432. "
+ "Consider increasing heartbeatTimeout then!");
return getIsolatedClusterView();