diff options
author | adheli.tavares <adheli.tavares@est.tech> | 2024-08-01 14:00:57 +0100 |
---|---|---|
committer | adheli.tavares <adheli.tavares@est.tech> | 2024-08-01 14:03:21 +0100 |
commit | f6d8e60eb75733cf9996bffb3c6ecb586f377da6 (patch) | |
tree | dd5c096965bd37d2914ab0e17dd511bd5029ac00 /feature-pooling-messages/src | |
parent | 4ec22933a69bcf5d2031d3c76fb32d1c50e0d7e1 (diff) |
Fix Drools-Apps executing policies
- hibernate dependencies were causing conflicts; updated to
latest hibernate-core with all the required deps.
- adjusted some variables to be correctly read by properties
parser.
- added STDOUT option to logback.xml to be able to get logs
from controllers/features when using docker logs command.
Issue-ID: POLICY-4955
Change-Id: Id3475fc77a63c46697c437bd413ebc1f97b731af
Signed-off-by: adheli.tavares <adheli.tavares@est.tech>
Diffstat (limited to 'feature-pooling-messages/src')
-rw-r--r-- | feature-pooling-messages/src/main/feature/config/feature-pooling-messages.properties | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/feature-pooling-messages/src/main/feature/config/feature-pooling-messages.properties b/feature-pooling-messages/src/main/feature/config/feature-pooling-messages.properties index 8497538e..3870ede1 100644 --- a/feature-pooling-messages/src/main/feature/config/feature-pooling-messages.properties +++ b/feature-pooling-messages/src/main/feature/config/feature-pooling-messages.properties @@ -72,18 +72,18 @@ # be enabled at the same time. pooling.usecases.enabled=true -pooling.usecases.topic=${envd:POOLING_TOPIC} +pooling.usecases.topic=${env:POOLING_TOPIC} # the list of sources and sinks should be identical -kafka.source.topics=${envd:POOLING_TOPIC} -kafka.sink.topics=${envd:POOLING_TOPIC} +kafka.source.topics=${env:POOLING_TOPIC} +kafka.sink.topics=${env:POOLING_TOPIC} -kafka.source.topics.policy-pdp-pooling.servers=${envd:KAFKA_SERVERS} -kafka.source.topics.policy-pdp-pooling.effectiveTopic=${envd:POOLING_TOPIC} +kafka.source.topics.policy-pdp-pooling.servers=${env:KAFKA_SERVERS} +kafka.source.topics.policy-pdp-pooling.effectiveTopic=${env:POOLING_TOPIC} kafka.source.topics.policy-pdp-pooling.apiKey= kafka.source.topics.policy-pdp-pooling.apiSecret= -kafka.sink.topics.policy-pdp-pooling.servers=${envd:KAFKA_SERVERS} -kafka.sink.topics.policy-pdp-pooling.effectiveTopic=${envd:POOLING_TOPIC} +kafka.sink.topics.policy-pdp-pooling.servers=${env:KAFKA_SERVERS} +kafka.sink.topics.policy-pdp-pooling.effectiveTopic=${env:POOLING_TOPIC} kafka.sink.topics.policy-pdp-pooling.apiKey= kafka.sink.topics.policy-pdp-pooling.apiSecret= |