diff options
author | Mukesh Paliwal <mukesh.paliwal1@huawei.com> | 2021-09-29 17:53:29 +0530 |
---|---|---|
committer | Mukesh Paliwal <mukesh.paliwal1@huawei.com> | 2021-09-29 17:53:29 +0530 |
commit | f6df60ad420d9877ecd6f0338549848ab1a0e001 (patch) | |
tree | 11fb91de896bbb3198ff520f6d3214c7eeb8b411 /bpmn/mso-infrastructure-bpmn/src/main | |
parent | d2f707ab5335dae2fab48d80adbd12731ad7e06e (diff) |
Add logback-spring.xml and remove override.yaml from code
Issue-ID: SO-3765
Signed-off-by: Mukesh Paliwal <mukesh.paliwal1@huawei.com>
Change-Id: I001d0bea3341383d4da01d34b9ab31d7907f8b54
Diffstat (limited to 'bpmn/mso-infrastructure-bpmn/src/main')
-rw-r--r-- | bpmn/mso-infrastructure-bpmn/src/main/java/org/onap/so/bpmn/infrastructure/MSOInfrastructureApplication.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/bpmn/mso-infrastructure-bpmn/src/main/java/org/onap/so/bpmn/infrastructure/MSOInfrastructureApplication.java b/bpmn/mso-infrastructure-bpmn/src/main/java/org/onap/so/bpmn/infrastructure/MSOInfrastructureApplication.java index b39b13e609..6900f3099d 100644 --- a/bpmn/mso-infrastructure-bpmn/src/main/java/org/onap/so/bpmn/infrastructure/MSOInfrastructureApplication.java +++ b/bpmn/mso-infrastructure-bpmn/src/main/java/org/onap/so/bpmn/infrastructure/MSOInfrastructureApplication.java @@ -70,14 +70,12 @@ import static org.springframework.boot.context.config.ConfigFileApplicationListe @EnableAutoConfiguration(exclude= FreeMarkerAutoConfiguration.class) public class MSOInfrastructureApplication extends SpringBootServletInitializer { - private static final String ADDITIONAL_CONFIG = "file:/camunda/app/config/override.yaml"; private static final Logger logger = LoggerFactory.getLogger(MSOInfrastructureApplication.class); @Override protected SpringApplicationBuilder configure(SpringApplicationBuilder application) { return application - .sources(MSOInfrastructureApplication.class) - .properties(singletonMap(CONFIG_ADDITIONAL_LOCATION_PROPERTY, ADDITIONAL_CONFIG)); + .sources(MSOInfrastructureApplication.class); } @Autowired private ProcessEngine processEngine; |