From a72a36a338b8c6901e02742af8766baea57b0428 Mon Sep 17 00:00:00 2001 From: danielhanrahan Date: Fri, 8 Dec 2023 13:57:10 +0000 Subject: [PATCH] Fix typo in DMI liveness Spring variable name Issue-ID: CPS-1993 Signed-off-by: danielhanrahan Change-Id: I44457b35ae639f8dcbab26989c5d1e6e1144d076 --- .../cps/ncmp/api/impl/trustlevel/dmiavailability/DmiPluginWatchDog.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cps-ncmp-service/src/main/java/org/onap/cps/ncmp/api/impl/trustlevel/dmiavailability/DmiPluginWatchDog.java b/cps-ncmp-service/src/main/java/org/onap/cps/ncmp/api/impl/trustlevel/dmiavailability/DmiPluginWatchDog.java index 6a272f1c6..6ae7ff3d4 100644 --- a/cps-ncmp-service/src/main/java/org/onap/cps/ncmp/api/impl/trustlevel/dmiavailability/DmiPluginWatchDog.java +++ b/cps-ncmp-service/src/main/java/org/onap/cps/ncmp/api/impl/trustlevel/dmiavailability/DmiPluginWatchDog.java @@ -47,7 +47,7 @@ public class DmiPluginWatchDog { * the resulting trust level wil be stored in the relevant cache. * The @fixedDelayString is the time interval, in milliseconds, between consecutive checks. */ - @Scheduled(fixedDelayString = "${ncmp.timers.trust-evel.dmi-availability-watchdog-ms:30000}") + @Scheduled(fixedDelayString = "${ncmp.timers.trust-level.dmi-availability-watchdog-ms:30000}") public void checkDmiAvailability() { trustLevelPerDmiPlugin.entrySet().forEach(entry -> { final TrustLevel newDmiTrustLevel; -- 2.16.6