You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by jb...@apache.org on 2019/06/06 11:42:59 UTC

[karaf] branch karaf-4.2.x updated (78dec81 -> 029e9e5)

This is an automated email from the ASF dual-hosted git repository.

jbonofre pushed a change to branch karaf-4.2.x
in repository https://gitbox.apache.org/repos/asf/karaf.git.


    from 78dec81  [KARAF-6317] Upgrade to Spring 5.1.7.RELEASE
     new 1ebe5c1  [KARAF-6300] Upgrade to Pax Logging 1.10.2
     new 029e9e5  Fix WebTest itest

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 itests/test/src/test/java/org/apache/karaf/itests/WebTest.java | 6 +++++-
 pom.xml                                                        | 2 +-
 2 files changed, 6 insertions(+), 2 deletions(-)


[karaf] 02/02: Fix WebTest itest

Posted by jb...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jbonofre pushed a commit to branch karaf-4.2.x
in repository https://gitbox.apache.org/repos/asf/karaf.git

commit 029e9e5f1aa84f949bf6e6cc96914be7f51595d4
Author: Jean-Baptiste Onofré <jb...@apache.org>
AuthorDate: Wed Jun 5 18:27:17 2019 +0200

    Fix WebTest itest
---
 itests/test/src/test/java/org/apache/karaf/itests/WebTest.java | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/itests/test/src/test/java/org/apache/karaf/itests/WebTest.java b/itests/test/src/test/java/org/apache/karaf/itests/WebTest.java
index ce1bb29..128b013 100644
--- a/itests/test/src/test/java/org/apache/karaf/itests/WebTest.java
+++ b/itests/test/src/test/java/org/apache/karaf/itests/WebTest.java
@@ -83,9 +83,13 @@ public class WebTest extends KarafTestSupport {
         System.out.println(buffer.toString());
         assertContains("Hello World!", buffer.toString());
 
-        System.out.println(executeCommand("web:uninstall 126"));
+        System.out.println(executeCommand("web:uninstall 125"));
         listOutput = executeCommand("web:list");
         System.out.println(listOutput);
+        while (listOutput.contains("/test")) {
+            Thread.sleep(500);
+            listOutput = executeCommand("web:list");
+        }
         assertContainsNot("/test", listOutput);
     }
 


[karaf] 01/02: [KARAF-6300] Upgrade to Pax Logging 1.10.2

Posted by jb...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jbonofre pushed a commit to branch karaf-4.2.x
in repository https://gitbox.apache.org/repos/asf/karaf.git

commit 1ebe5c17984ef1a3b5f84e2769d037998acbc925
Author: Jean-Baptiste Onofré <jb...@apache.org>
AuthorDate: Tue Jun 4 09:11:36 2019 +0200

    [KARAF-6300] Upgrade to Pax Logging 1.10.2
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 69524ec..4bcff41 100644
--- a/pom.xml
+++ b/pom.xml
@@ -283,7 +283,7 @@
 
         <pax.cdi.version>1.1.1</pax.cdi.version>
         <pax.exam.version>4.13.1</pax.exam.version>
-        <pax.logging.version>1.10.1</pax.logging.version>
+        <pax.logging.version>1.10.2</pax.logging.version>
         <pax.base.version>1.5.0</pax.base.version>
         <pax.swissbox.version>1.8.3</pax.swissbox.version>
         <pax.url.version>2.6.1</pax.url.version>