aboutsummaryrefslogtreecommitdiffstats
path: root/charts/aai-data-router/resources/dynamic
diff options
context:
space:
mode:
authorrenealr <reneal.rogers@amdocs.com>2019-04-25 16:22:13 -0400
committerrenealr <reneal.rogers@amdocs.com>2019-04-25 16:22:48 -0400
commitf1f7b2f8edc0627beecf828b92d7d97331f6b1d2 (patch)
treeee320e17fc333e8c3a9eb8b819b3ba066c87deec /charts/aai-data-router/resources/dynamic
parent1dba1b169b3302d8abe9a24ade25679813b1348f (diff)
fix crash look backoff in data router
update data router with additional config needed by the schema ingest lib Issue-ID: AAI-2369 Change-Id: I1870fa1fd3e92854b86553a394bd522429c22164 Signed-off-by: renealr <reneal.rogers@amdocs.com>
Diffstat (limited to 'charts/aai-data-router/resources/dynamic')
-rw-r--r--charts/aai-data-router/resources/dynamic/conf/data-router-oxm.xml13
1 files changed, 4 insertions, 9 deletions
diff --git a/charts/aai-data-router/resources/dynamic/conf/data-router-oxm.xml b/charts/aai-data-router/resources/dynamic/conf/data-router-oxm.xml
index c945c39..f564797 100644
--- a/charts/aai-data-router/resources/dynamic/conf/data-router-oxm.xml
+++ b/charts/aai-data-router/resources/dynamic/conf/data-router-oxm.xml
@@ -9,14 +9,9 @@
location="file:${CONFIG_HOME}/schemaIngest.properties"
ignore-unresolvable="true" />
- <bean id="schemaLocationsBean" class="org.onap.aai.setup.SchemaLocationsBean">
- <!-- 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}" />
- </bean>
-
- <bean id="schemaVersions" class="org.onap.aai.setup.SchemaVersions"/>
+ <bean id="nodeIngestor" class="org.onap.aai.nodes.NodeIngestor" autowire="byName"/>
+ <bean id="oxmModelLoader" class="org.onap.aai.schema.OxmModelLoader" >
+ <constructor-arg ref="nodeIngestor"/>
+ </bean>
</beans>
-