You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ol...@apache.org on 2017/03/01 16:17:20 UTC

svn commit: r1784983 - /sling/trunk/installer/hc/src/main/java/org/apache/sling/installer/hc/OsgiInstallerHealthCheck.java

Author: olli
Date: Wed Mar  1 16:17:20 2017
New Revision: 1784983

URL: http://svn.apache.org/viewvc?rev=1784983&view=rev
Log:
fix typo

Modified:
    sling/trunk/installer/hc/src/main/java/org/apache/sling/installer/hc/OsgiInstallerHealthCheck.java

Modified: sling/trunk/installer/hc/src/main/java/org/apache/sling/installer/hc/OsgiInstallerHealthCheck.java
URL: http://svn.apache.org/viewvc/sling/trunk/installer/hc/src/main/java/org/apache/sling/installer/hc/OsgiInstallerHealthCheck.java?rev=1784983&r1=1784982&r2=1784983&view=diff
==============================================================================
--- sling/trunk/installer/hc/src/main/java/org/apache/sling/installer/hc/OsgiInstallerHealthCheck.java (original)
+++ sling/trunk/installer/hc/src/main/java/org/apache/sling/installer/hc/OsgiInstallerHealthCheck.java Wed Mar  1 16:17:20 2017
@@ -95,7 +95,7 @@ public class OsgiInstallerHealthCheck im
         }
         hcLog.info("Checked {} OSGi bundles and {} configurations.", numCheckedBundles, numCheckedConfigurations);
         if (hcLog.getAggregateStatus().ordinal() >= Result.Status.WARN.ordinal()) {
-            hcLog.info("Refer to the OSGI installer's documentation page at {} for further details on how to fix those issues.", DOCUMENTATION_URL);
+            hcLog.info("Refer to the OSGi installer's documentation page at {} for further details on how to fix those issues.", DOCUMENTATION_URL);
         }
         return new Result(hcLog);
     }