diff options
Diffstat (limited to 'aai-resources/src/main/java')
-rw-r--r-- | aai-resources/src/main/java/org/onap/aai/TenantIsolation/DataImportTasks.java | 2 | ||||
-rw-r--r-- | aai-resources/src/main/java/org/onap/aai/service/RetiredService.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/aai-resources/src/main/java/org/onap/aai/TenantIsolation/DataImportTasks.java b/aai-resources/src/main/java/org/onap/aai/TenantIsolation/DataImportTasks.java index e32d4049..098b7156 100644 --- a/aai-resources/src/main/java/org/onap/aai/TenantIsolation/DataImportTasks.java +++ b/aai-resources/src/main/java/org/onap/aai/TenantIsolation/DataImportTasks.java @@ -53,7 +53,7 @@ import org.springframework.stereotype.Component; * */ @Component -@PropertySource("file:${server.local.startpath}/etc/appprops/datatoolscrons.properties") +@PropertySource(value="file:${server.local.startpath}/etc/appprops/datatoolscrons.properties", ignoreResourceNotFound=true) public class DataImportTasks { private static final Logger LOGGER; diff --git a/aai-resources/src/main/java/org/onap/aai/service/RetiredService.java b/aai-resources/src/main/java/org/onap/aai/service/RetiredService.java index 506a097f..94b1be15 100644 --- a/aai-resources/src/main/java/org/onap/aai/service/RetiredService.java +++ b/aai-resources/src/main/java/org/onap/aai/service/RetiredService.java @@ -33,7 +33,7 @@ import org.springframework.stereotype.Service; @Service @PropertySource("classpath:retired.properties") -@PropertySource(value = "file:${server.local.startpath}/retired.properties") +@PropertySource(value = "file:${server.local.startpath}/retired.properties", ignoreResourceNotFound=true) public class RetiredService { private String retiredPatterns; |