You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2015/07/28 10:48:39 UTC

svn commit: r1693033 - /sling/trunk/testing/tools/src/main/java/org/apache/sling/testing/tools/osgi/WebconsoleClient.java

Author: rombert
Date: Tue Jul 28 08:48:39 2015
New Revision: 1693033

URL: http://svn.apache.org/r1693033
Log:
SLING-3873 - Using SlingTestBase does not work with a non-standard
password set on the sling server

This closes #99

Submitted By: Wim Symons

Modified:
    sling/trunk/testing/tools/src/main/java/org/apache/sling/testing/tools/osgi/WebconsoleClient.java

Modified: sling/trunk/testing/tools/src/main/java/org/apache/sling/testing/tools/osgi/WebconsoleClient.java
URL: http://svn.apache.org/viewvc/sling/trunk/testing/tools/src/main/java/org/apache/sling/testing/tools/osgi/WebconsoleClient.java?rev=1693033&r1=1693032&r2=1693033&view=diff
==============================================================================
--- sling/trunk/testing/tools/src/main/java/org/apache/sling/testing/tools/osgi/WebconsoleClient.java (original)
+++ sling/trunk/testing/tools/src/main/java/org/apache/sling/testing/tools/osgi/WebconsoleClient.java Tue Jul 28 08:48:39 2015
@@ -105,7 +105,7 @@ public class WebconsoleClient {
      *  installation hasn't happened yet. */
     public void checkBundleInstalled(String symbolicName, int timeoutSeconds) {
         final String path = getBundlePath(symbolicName, ".json");
-        new RetryingContentChecker(executor, builder).check(path, 200, timeoutSeconds, 500);
+        new RetryingContentChecker(executor, builder, username, password).check(path, 200, timeoutSeconds, 500);
     }
     
     private JSONObject getBundleData(String symbolicName) throws Exception {