summaryrefslogtreecommitdiffstats
path: root/feature-pooling-dmaap
diff options
context:
space:
mode:
authorPamela Dragosh <pdragosh@research.att.com>2019-03-04 16:11:12 +0000
committerGerrit Code Review <gerrit@onap.org>2019-03-04 16:11:12 +0000
commitc10a9c1fea3a7c05eb4b4aaf2264855222f1945b (patch)
tree509d91a93094d68fc5f394dd539de5026a15bfe7 /feature-pooling-dmaap
parent5ac447f758d9b7a7baaf0e24a0e8621a15b8c5ff (diff)
parentb001c1ac5a0b4d938a69adb47f4613f64dc71c1a (diff)
Merge "move all hard install config to environment vars"
Diffstat (limited to 'feature-pooling-dmaap')
-rw-r--r--feature-pooling-dmaap/src/main/feature/config/feature-pooling-dmaap.properties22
1 files changed, 12 insertions, 10 deletions
diff --git a/feature-pooling-dmaap/src/main/feature/config/feature-pooling-dmaap.properties b/feature-pooling-dmaap/src/main/feature/config/feature-pooling-dmaap.properties
index 1d549855..2786a613 100644
--- a/feature-pooling-dmaap/src/main/feature/config/feature-pooling-dmaap.properties
+++ b/feature-pooling-dmaap/src/main/feature/config/feature-pooling-dmaap.properties
@@ -84,13 +84,15 @@ pooling.beijing.topic=${env:POOLING_TOPIC}
# the list of sources and sinks should be identical
-ueb.source.topics=${env:POOLING_TOPIC}
-ueb.sink.topics=${env:POOLING_TOPIC}
-
-ueb.source.topics.${{POOLING_TOPIC}}.servers=${env:DMAAP_SERVERS}
-ueb.source.topics.${{POOLING_TOPIC}}.apiKey=
-ueb.source.topics.${{POOLING_TOPIC}}.apiSecret=
-
-ueb.sink.topics.${{POOLING_TOPIC}}.servers=${env:DMAAP_SERVERS}
-ueb.sink.topics.${{POOLING_TOPIC}}.apiKey=
-ueb.sink.topics.${{POOLING_TOPIC}}.apiSecret=
+ueb.source.topics=POOLING_TOPIC
+ueb.sink.topics=POOLING_TOPIC
+
+ueb.source.topics.POOLING_TOPIC.servers=${env:DMAAP_SERVERS}
+ueb.source.topics.POOLING_TOPIC.effectiveTopic=${env:POOLING_TOPIC}
+ueb.source.topics.POOLING_TOPIC.apiKey=
+ueb.source.topics.POOLING_TOPIC.apiSecret=
+
+ueb.sink.topics.POOLING_TOPIC.servers=${env:DMAAP_SERVERS}
+ueb.sink.topics.POOLING_TOPIC.effectiveTopic=${env:POOLING_TOPIC}
+ueb.sink.topics.POOLING_TOPIC.apiKey=
+ueb.sink.topics.POOLING_TOPIC.apiSecret=