Merge "NONRTRIC - Implement DMaaP mediator producer service in Java"
authorHenrik Andersson <henrik.b.andersson@est.tech>
Thu, 23 Sep 2021 14:43:52 +0000 (14:43 +0000)
committerGerrit Code Review <gerrit@o-ran-sc.org>
Thu, 23 Sep 2021 14:43:52 +0000 (14:43 +0000)
dmaap-adaptor-java/config/application.yaml
dmaap-adaptor-java/src/test/java/org/oran/dmaapadapter/ApplicationTest.java
dmaap-adaptor-java/src/test/java/org/oran/dmaapadapter/IntegrationWithEcs.java

index 3990ceb..b327a0b 100644 (file)
@@ -45,7 +45,6 @@ app:
     # The HTTP proxy (if configured) will only be used for accessing NearRT RIC:s
     http.proxy-host:
     http.proxy-port: 0
-  vardata-directory: /var/dmaap-adaptor-service
   ecs-base-url: https://localhost:8434
   # Location of the component configuration file. The file will only be used if the Consul database is not used;
   # configuration from the Consul will override the file.
index b2b6d96..9dd7f8b 100644 (file)
@@ -65,7 +65,6 @@ import org.springframework.test.context.junit.jupiter.SpringExtension;
 @TestPropertySource(properties = { //
         "server.ssl.key-store=./config/keystore.jks", //
         "app.webclient.trust-store=./config/truststore.jks", //
-        "app.vardata-directory=./target", //
         "app.configuration-filepath=./src/test/resources/test_application_configuration.json"//
 })
 class ApplicationTest {
index f9ead03..9ca9413 100644 (file)
@@ -57,7 +57,6 @@ import org.springframework.test.context.junit.jupiter.SpringExtension;
 @TestPropertySource(properties = { //
         "server.ssl.key-store=./config/keystore.jks", //
         "app.webclient.trust-store=./config/truststore.jks", //
-        "app.vardata-directory=./target", //
         "app.configuration-filepath=./src/test/resources/test_application_configuration.json", //
         "app.ecs-base-url=https://localhost:8434" //
 })