From e702c19d34c342e75993e169c261f9087cc0643f Mon Sep 17 00:00:00 2001 From: PatrikBuhr Date: Thu, 23 Sep 2021 12:34:44 +0200 Subject: [PATCH] NONRTRIC - Implement DMaaP mediator producer service in Java Removed vardata (which is only needed if the service stores persistent data). Signed-off-by: PatrikBuhr Issue-ID: NONRTRIC-597 Change-Id: Ibd28f858e60ab793d7f38d37a16503a8ae63e7b5 --- dmaap-adaptor-java/config/application.yaml | 1 - .../src/test/java/org/oran/dmaapadapter/ApplicationTest.java | 1 - .../src/test/java/org/oran/dmaapadapter/IntegrationWithEcs.java | 1 - 3 files changed, 3 deletions(-) diff --git a/dmaap-adaptor-java/config/application.yaml b/dmaap-adaptor-java/config/application.yaml index 3990ceb2..b327a0b6 100644 --- a/dmaap-adaptor-java/config/application.yaml +++ b/dmaap-adaptor-java/config/application.yaml @@ -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. diff --git a/dmaap-adaptor-java/src/test/java/org/oran/dmaapadapter/ApplicationTest.java b/dmaap-adaptor-java/src/test/java/org/oran/dmaapadapter/ApplicationTest.java index ff50761f..2a82ff8f 100644 --- a/dmaap-adaptor-java/src/test/java/org/oran/dmaapadapter/ApplicationTest.java +++ b/dmaap-adaptor-java/src/test/java/org/oran/dmaapadapter/ApplicationTest.java @@ -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 { diff --git a/dmaap-adaptor-java/src/test/java/org/oran/dmaapadapter/IntegrationWithEcs.java b/dmaap-adaptor-java/src/test/java/org/oran/dmaapadapter/IntegrationWithEcs.java index 54460043..3dde82e8 100644 --- a/dmaap-adaptor-java/src/test/java/org/oran/dmaapadapter/IntegrationWithEcs.java +++ b/dmaap-adaptor-java/src/test/java/org/oran/dmaapadapter/IntegrationWithEcs.java @@ -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" // }) -- 2.16.6