diff options
author | Fiete Ostkamp <Fiete.Ostkamp@telekom.de> | 2024-06-12 11:52:34 +0200 |
---|---|---|
committer | Fiete Ostkamp <Fiete.Ostkamp@telekom.de> | 2024-06-12 11:52:34 +0200 |
commit | 44ed2a90cb4eeb0b96b90ae132c52f51d858fced (patch) | |
tree | 8da065736df89003924e304e1fb0a5f660312736 /sparkybe-onap-application/config/spring-beans | |
parent | 1efee417abaaa07344f4dbb239d2456841faa091 (diff) |
Sparky deployment not working after change to schema ingestion2.0.5
- hide the oxm-reader-bean.xml behind a profile [1]
[1] it was added in the previous CR and has some unintended side-effects. It is only used for running the tests
Issue-ID: AAI-3866
Change-Id: I2af8ef47526b2aaebe9355126f88f39a72e4ed3c
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Diffstat (limited to 'sparkybe-onap-application/config/spring-beans')
-rw-r--r-- | sparkybe-onap-application/config/spring-beans/oxm-reader-bean.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sparkybe-onap-application/config/spring-beans/oxm-reader-bean.xml b/sparkybe-onap-application/config/spring-beans/oxm-reader-bean.xml index 74a291c..799e2f5 100644 --- a/sparkybe-onap-application/config/spring-beans/oxm-reader-bean.xml +++ b/sparkybe-onap-application/config/spring-beans/oxm-reader-bean.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> -<beans xmlns="http://www.springframework.org/schema/beans" +<beans profile="test" xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd @@ -34,7 +34,7 @@ </bean> <bean id="schemaLocationsBean" class="org.onap.aai.setup.SchemaLocationsBean"> - <!-- When running with AJSC these properties must be injected directly. + <!-- When running with AJSC these properties must be injected directly. The reason for this is unknown. --> <property name="nodeDirectory" value="${nodeDir}" /> <property name="edgeDirectory" value="${edgeDir}" /> @@ -59,4 +59,4 @@ <constructor-arg ref="schemaVersions" /> </bean> -</beans>
\ No newline at end of file +</beans> |