NONRTRIC - Implement DMaaP mediator producer service in Java 43/6743/1
authorPatrikBuhr <patrik.buhr@est.tech>
Thu, 23 Sep 2021 10:34:44 +0000 (12:34 +0200)
committerPatrikBuhr <patrik.buhr@est.tech>
Thu, 23 Sep 2021 10:34:44 +0000 (12:34 +0200)
Removed vardata (which is only needed if the service stores persistent data).

Signed-off-by: PatrikBuhr <patrik.buhr@est.tech>
Issue-ID: NONRTRIC-597
Change-Id: Ibd28f858e60ab793d7f38d37a16503a8ae63e7b5

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 ff50761..2a82ff8 100644 (file)
@@ -69,7 +69,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 5446004..3dde82e 100644 (file)
@@ -59,7 +59,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" //
 })