This is an automated email from the ASF dual-hosted git repository.
shuber pushed a commit to branch UNOMI-877
in repository https://gitbox.apache.org/repos/asf/unomi.git
The following commit(s) were added to refs/heads/UNOMI-877 by this push:
new ef38a6d96 Add `bundleWatcher` reference and properties to
blueprint.xml.
ef38a6d96 is described below
commit ef38a6d96eff4dd184296b0c653a857833c21c09
Author: Serge Huber <[email protected]>
AuthorDate: Sun Aug 24 09:01:43 2025 +0200
Add `bundleWatcher` reference and properties to blueprint.xml.
---
services/src/main/resources/OSGI-INF/blueprint/blueprint.xml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/services/src/main/resources/OSGI-INF/blueprint/blueprint.xml
b/services/src/main/resources/OSGI-INF/blueprint/blueprint.xml
index e2e188464..69c789886 100644
--- a/services/src/main/resources/OSGI-INF/blueprint/blueprint.xml
+++ b/services/src/main/resources/OSGI-INF/blueprint/blueprint.xml
@@ -73,6 +73,7 @@
<reference id="osgiConfigurationAdmin"
interface="org.osgi.service.cm.ConfigurationAdmin"/>
<reference id="metricsService"
interface="org.apache.unomi.metrics.MetricsService"/>
<reference id="scriptExecutor"
interface="org.apache.unomi.scripting.ScriptExecutor"/>
+ <reference id="bundleWatcher"
interface="org.apache.unomi.lifecycle.BundleWatcher"/>
<!-- Service definitions -->
@@ -261,6 +262,8 @@
<property name="persistenceService" ref="persistenceService"/>
<property name="nodeId" value="${cluster.nodeId}"/>
<property name="nodeStatisticsUpdateFrequency"
value="${cluster.nodeStatisticsUpdateFrequency}"/>
+ <property name="bundleContext" ref="blueprintBundleContext"/>
+ <property name="bundleWatcher" ref="bundleWatcher"/>
<!-- Wait for UNOMI-878 to be available to activate that
<property name="schedulerService" ref="schedulerServiceImpl"/>
-->