diff options
author | vasraz <vasyl.razinkov@est.tech> | 2023-06-19 17:51:23 +0100 |
---|---|---|
committer | Michael Morris <michael.morris@est.tech> | 2023-06-20 10:05:26 +0000 |
commit | c465f8fac8cc8be671319fca2100e98fc4a4c13f (patch) | |
tree | 0c050c754ae64afe4b2ca2d2a1a2266b7f310262 /catalog-be/src/main/resources/application-context.xml | |
parent | 068a01213a8b2daac93b0c2aab33b9a73e7fb70b (diff) |
Disable DMaaP if Kafka active
DMaaP healthcheck cannot succeed when using Kafka, which in turn causes distribution to fail
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Change-Id: Ia6e1e35b9a2e819e38e62caeb797342948f34e92
Issue-ID: SDC-4542
Diffstat (limited to 'catalog-be/src/main/resources/application-context.xml')
-rw-r--r-- | catalog-be/src/main/resources/application-context.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/catalog-be/src/main/resources/application-context.xml b/catalog-be/src/main/resources/application-context.xml index 39ac4f8892..2b1d5ef3bd 100644 --- a/catalog-be/src/main/resources/application-context.xml +++ b/catalog-be/src/main/resources/application-context.xml @@ -15,6 +15,7 @@ org.openecomp.sdc.be.externalapi.servlet, org.openecomp.sdc.be.components.scheduledtasks, org.openecomp.sdc.be.facade.operations, + org.openecomp.sdc.be.components.kafka, org.openecomp.sdc.be.components.impl"> </context:component-scan> @@ -23,7 +24,7 @@ <bean class="org.openecomp.sdc.be.components.distribution.engine.config.DistributionEngineSpringConfig"/> <bean class="org.openecomp.sdc.config.CatalogBESpringConfig"/> <bean class="org.openecomp.sdc.config.MicrometerSpringConfig"/> - + <bean class="org.openecomp.sdc.be.components.kafka.KafkaHandler"/> <aop:config> <aop:aspect id="lockAspect" ref="componentLockAspect"> |