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

shuber pushed a commit to branch unomi-1.6.x
in repository https://gitbox.apache.org/repos/asf/unomi.git


The following commit(s) were added to refs/heads/unomi-1.6.x by this push:
     new f028028  UNOMI-542 : fix integration tests (#382)
f028028 is described below

commit f028028c0350e74dd8db4a83e0d6e8ece5e2bab1
Author: jsinovassin <[email protected]>
AuthorDate: Fri Jan 28 11:32:34 2022 +0100

    UNOMI-542 : fix integration tests (#382)
    
    (cherry picked from commit 1f394e19fe737d58863bd940f2897b4c24a42fe2)
---
 .../src/main/java/org/apache/unomi/lifecycle/BundleWatcher.java       | 4 ++--
 lifecycle-watcher/src/main/resources/OSGI-INF/blueprint/blueprint.xml | 1 -
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git 
a/lifecycle-watcher/src/main/java/org/apache/unomi/lifecycle/BundleWatcher.java 
b/lifecycle-watcher/src/main/java/org/apache/unomi/lifecycle/BundleWatcher.java
index e72b6d7..98f058f 100644
--- 
a/lifecycle-watcher/src/main/java/org/apache/unomi/lifecycle/BundleWatcher.java
+++ 
b/lifecycle-watcher/src/main/java/org/apache/unomi/lifecycle/BundleWatcher.java
@@ -191,9 +191,9 @@ public class BundleWatcher implements 
SynchronousBundleListener, ServiceListener
     }
 
     private void displayLogsForInactiveServices() {
-        requiredServicesFilters.forEach(requiredServicesFilters -> {
+        requiredServicesFilters.forEach(requiredServicesFilter -> {
             ServiceReference[] serviceReference = new ServiceReference[0];
-            String filterToString = requiredServicesFilters.toString();
+            String filterToString = requiredServicesFilter.toString();
             try {
                 serviceReference = bundleContext.getServiceReferences((String) 
null, filterToString);
             } catch (InvalidSyntaxException e) {
diff --git 
a/lifecycle-watcher/src/main/resources/OSGI-INF/blueprint/blueprint.xml 
b/lifecycle-watcher/src/main/resources/OSGI-INF/blueprint/blueprint.xml
index bed16c8..1bb5a53 100644
--- a/lifecycle-watcher/src/main/resources/OSGI-INF/blueprint/blueprint.xml
+++ b/lifecycle-watcher/src/main/resources/OSGI-INF/blueprint/blueprint.xml
@@ -61,7 +61,6 @@
                 <entry key="org.apache.unomi.router-service" value="false"/>
                 <entry key="org.apache.unomi.router-rest" value="false"/>
                 <entry key="org.apache.unomi.shell-dev-commands" 
value="false"/>
-                <entry key="org.apache.unomi.web-tracker-wab" value="false"/>
                 <entry key="org.apache.unomi.groovy-actions-services" 
value="false"/>
                 <entry key="org.apache.unomi.groovy-actions-rest" 
value="false"/>
             </map>

Reply via email to