Fix typo in DMI liveness Spring variable name 69/136769/2
authordanielhanrahan <daniel.hanrahan@est.tech>
Fri, 8 Dec 2023 13:57:10 +0000 (13:57 +0000)
committerDaniel Hanrahan <daniel.hanrahan@est.tech>
Tue, 12 Dec 2023 10:45:55 +0000 (10:45 +0000)
Issue-ID: CPS-1993
Signed-off-by: danielhanrahan <daniel.hanrahan@est.tech>
Change-Id: I44457b35ae639f8dcbab26989c5d1e6e1144d076

cps-ncmp-service/src/main/java/org/onap/cps/ncmp/api/impl/trustlevel/dmiavailability/DmiPluginWatchDog.java

index 6a272f1..6ae7ff3 100644 (file)
@@ -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;