From de8e834e2bfc714e7a588f7470fe2ef7ba368275 Mon Sep 17 00:00:00 2001 From: Piotr Jaszczyk Date: Wed, 3 Oct 2018 10:33:40 +0200 Subject: Change domain to lower case Change-Id: I097def2ba720fafe0a1e1a88e87f8c03663627c9 Issue-ID: DCAEGEN2-847 Signed-off-by: Piotr Jaszczyk --- .../onap/dcae/collectors/veshv/tests/fakes/configuration.kt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'hv-collector-ct') diff --git a/hv-collector-ct/src/test/kotlin/org/onap/dcae/collectors/veshv/tests/fakes/configuration.kt b/hv-collector-ct/src/test/kotlin/org/onap/dcae/collectors/veshv/tests/fakes/configuration.kt index 432b6976..3770913a 100644 --- a/hv-collector-ct/src/test/kotlin/org/onap/dcae/collectors/veshv/tests/fakes/configuration.kt +++ b/hv-collector-ct/src/test/kotlin/org/onap/dcae/collectors/veshv/tests/fakes/configuration.kt @@ -39,7 +39,7 @@ val basicConfiguration: CollectorConfiguration = CollectorConfiguration( kafkaBootstrapServers = "localhost:9969", routing = routing { defineRoute { - fromDomain(PERF3GPP.name) + fromDomain(PERF3GPP.domainName) toTopic(PERF3GPP_TOPIC) withFixedPartitioning() } @@ -50,17 +50,17 @@ val twoDomainsToOneTopicConfiguration: CollectorConfiguration = CollectorConfigu kafkaBootstrapServers = "localhost:9969", routing = routing { defineRoute { - fromDomain(PERF3GPP.name) + fromDomain(PERF3GPP.domainName) toTopic(PERF3GPP_TOPIC) withFixedPartitioning() } defineRoute { - fromDomain(HEARTBEAT.name) + fromDomain(HEARTBEAT.domainName) toTopic(PERF3GPP_TOPIC) withFixedPartitioning() } defineRoute { - fromDomain(MEASUREMENT.name) + fromDomain(MEASUREMENT.domainName) toTopic(MEASUREMENTS_FOR_VF_SCALING_TOPIC) withFixedPartitioning() } @@ -72,7 +72,7 @@ val configurationWithDifferentRouting: CollectorConfiguration = CollectorConfigu kafkaBootstrapServers = "localhost:9969", routing = routing { defineRoute { - fromDomain(PERF3GPP.name) + fromDomain(PERF3GPP.domainName) toTopic(ALTERNATE_PERF3GPP_TOPIC) withFixedPartitioning() } -- cgit 1.2.3-korg