From 72c441e422f9804637eda61cddf62fc6fb7a64cb Mon Sep 17 00:00:00 2001 From: Mike Major Date: Wed, 25 Nov 2020 21:41:12 +0000 Subject: [PATCH] Fix to make sure the service starts (#9130) Signed-off-by: Mike Major --- .../openhab/io/hueemulation/internal/HueEmulationService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/HueEmulationService.java b/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/HueEmulationService.java index ea1632db1..17773a252 100644 --- a/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/HueEmulationService.java +++ b/bundles/org.openhab.io.hueemulation/src/main/java/org/openhab/io/hueemulation/internal/HueEmulationService.java @@ -71,7 +71,7 @@ import org.slf4j.LoggerFactory; * @author David Graeff - Initial Contribution */ @NonNullByDefault -@Component(service = HueEmulationService.class) +@Component(immediate = true, service = HueEmulationService.class) public class HueEmulationService implements EventHandler { public static final String CONFIG_PID = "org.openhab.hueemulation";