summaryrefslogtreecommitdiffstats
path: root/ms/blueprintsprocessor/modules
diff options
context:
space:
mode:
authorKAPIL SINGAL <ks220y@att.com>2021-09-01 01:15:54 +0000
committerGerrit Code Review <gerrit@onap.org>2021-09-01 01:15:54 +0000
commit6b3071cd8dca04d5d1f17ff0d2921d8965732880 (patch)
treef035803e4ff44ae65f1078522a53a0dbb917c96b /ms/blueprintsprocessor/modules
parent35481027b3fdf251a3b520ab5b1ae89c7d2d0e34 (diff)
parent0957777875a16ad6533da2e04a1c9061f043bb82 (diff)
Merge "Upgrade hazelcast version"
Diffstat (limited to 'ms/blueprintsprocessor/modules')
-rw-r--r--ms/blueprintsprocessor/modules/commons/processor-core/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/core/cluster/HazelcastClusterServiceTest.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ms/blueprintsprocessor/modules/commons/processor-core/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/core/cluster/HazelcastClusterServiceTest.kt b/ms/blueprintsprocessor/modules/commons/processor-core/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/core/cluster/HazelcastClusterServiceTest.kt
index ded017940..1b3995f94 100644
--- a/ms/blueprintsprocessor/modules/commons/processor-core/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/core/cluster/HazelcastClusterServiceTest.kt
+++ b/ms/blueprintsprocessor/modules/commons/processor-core/src/test/kotlin/org/onap/ccsdk/cds/blueprintsprocessor/core/cluster/HazelcastClusterServiceTest.kt
@@ -241,7 +241,7 @@ class HazelcastClusterServiceTest {
log.info("initialising ...")
val hazelcastClusterService = bluePrintClusterService as HazelcastClusterService
- val memberNameMap = bluePrintClusterService.clusterMapStore<Member>("member-name-map") as IMap
+ val memberNameMap: Map<String, Member> = bluePrintClusterService.clusterMapStore<Member>("member-name-map") as IMap
assertEquals(3, memberNameMap.size, "failed to match member size")
memberNameMap.forEach { (key, value) -> log.info("nodeId($key), Member($value)") }
val scheduler = hazelcastClusterService.clusterScheduler("cleanup")