diff options
author | 2022-05-23 15:43:05 +0100 | |
---|---|---|
committer | 2022-06-01 16:56:50 +0100 | |
commit | 2cd8b98223bd49975fcca0ec7f1d4673a4163074 (patch) | |
tree | d26e809ad7befaf8b7815271a6fcc501f67b3117 /src/test/resources | |
parent | df26bc38a75f10650ce5785cdc9bd7b9516f6f25 (diff) |
Async request response dmi -> NCMP
-Added Async for passthrough running and operational
-Build will fail until cps is merged https://gerrit.onap.org/r/c/cps/+/128685
Issue-ID: CPS-830
Change-Id: Iedbfab109f5cd777a5be8eed7414758d0f5ec05c
Signed-off-by: JosephKeenan <joseph.keenan@est.tech>
Signed-off-by: ToineSiebelink <toine.siebelink@est.tech>
Signed-off-by: JosephKeenan <joseph.keenan@est.tech>
Diffstat (limited to 'src/test/resources')
-rw-r--r-- | src/test/resources/application.yml | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/test/resources/application.yml b/src/test/resources/application.yml index 0d3784f9..9ed37a73 100644 --- a/src/test/resources/application.yml +++ b/src/test/resources/application.yml @@ -47,19 +47,22 @@ dmi: spring: application: name: ncmp-dmi-plugin + mvc: + pathmatch: + matching-strategy: ANT_PATH_MATCHER kafka: - bootstrap-servers: localhost:9092 + bootstrap-servers: ${KAFKA_BOOTSTRAP_SERVER} security: protocol: PLAINTEXT producer: key-serializer: org.apache.kafka.common.serialization.StringSerializer value-serializer: org.springframework.kafka.support.serializer.JsonSerializer - client-id: dmi-plugin + client-id: ncmp-dmi-plugin app: ncmp: - async-m2m: - topic: my-topic-name + async: + topic: ${NCMP_ASYNC_M2M_TOPIC:ncmp-async-m2m} logging: format: json |