diff options
author | Harish Venkata Kajur <vk250x@att.com> | 2020-09-09 22:59:58 -0400 |
---|---|---|
committer | Harish Venkata Kajur <vk250x@att.com> | 2020-09-16 13:14:31 -0400 |
commit | 447967d32676845a8f706f1080f2b123af79e11c (patch) | |
tree | dd08550ca54afacb86cae3da10f4db25f48359af /components/aai-resources | |
parent | 48ae4e9d7a9ef5f9e73f6a3c90fd808f086089f5 (diff) |
Fix the service instance issue and support v21
Issue-ID: AAI-3128
Issue-ID: SO-3216
Change-Id: Ibc8ff1dd31f42c3c17dc5491dbf56991c74e2785
Signed-off-by: Harish Venkata Kajur <vk250x@att.com>
Diffstat (limited to 'components/aai-resources')
-rw-r--r-- | components/aai-resources/resources/config/application.properties | 6 | ||||
-rw-r--r-- | components/aai-resources/resources/config/logback.xml | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/components/aai-resources/resources/config/application.properties b/components/aai-resources/resources/config/application.properties index 7237c56..d0a9c14 100644 --- a/components/aai-resources/resources/config/application.properties +++ b/components/aai-resources/resources/config/application.properties @@ -21,8 +21,10 @@ info.build.version=1.3.0 spring.application.name=aai-resources spring.jersey.type=filter -server.contextPath=/ -spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration +spring.main.allow-bean-definition-overriding=true +server.servlet.context-path=/ + +spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration,org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration,org.keycloak.adapters.springboot.KeycloakAutoConfiguration,org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration spring.profiles.active={{ .Values.global.config.profiles.active }} spring.jersey.application-path=${schema.uri.base.path} diff --git a/components/aai-resources/resources/config/logback.xml b/components/aai-resources/resources/config/logback.xml index ba06414..f24e86d 100644 --- a/components/aai-resources/resources/config/logback.xml +++ b/components/aai-resources/resources/config/logback.xml @@ -306,6 +306,7 @@ </logger> <logger name="org.onap.aai.aaf.auth" level="DEBUG" additivity="false"> <appender-ref ref="asyncAUTH" /> + <appender-ref ref="STDOUT" /> </logger> <logger name="org.onap.aai.aailog.logs.AaiScheduledTaskAuditLog" level="INFO"> <appender-ref ref="asyncAUDIT"/> @@ -324,6 +325,7 @@ </logger> <logger name="org.onap.aai.interceptors.post" level="DEBUG" additivity="false"> <appender-ref ref="asynctranslog" /> + <appender-ref ref="STDOUT" /> </logger> <logger name="org.onap.aai.dmaap" level="DEBUG" additivity="false"> |