From 20289e87771520272f289093f0372460231a35c8 Mon Sep 17 00:00:00 2001 From: Geora Barsky Date: Mon, 24 Sep 2018 22:36:11 -0400 Subject: Fix AAI connectivity issue Modify AAI Rest client configuration to ensure that aai.port and host are not overriden by environment variables Issue-ID: LOG-694 Change-Id: I1b3fc449a07e967efa0466dacb5e75253d937c0a Signed-off-by: Geora Barsky --- .../pomba/servicedecomposition/test/ServiceDecompositionTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pomba/service-decomposition/src/test') diff --git a/pomba/service-decomposition/src/test/java/org/onap/sdnc/apps/pomba/servicedecomposition/test/ServiceDecompositionTest.java b/pomba/service-decomposition/src/test/java/org/onap/sdnc/apps/pomba/servicedecomposition/test/ServiceDecompositionTest.java index 94c73bf..37a5518 100644 --- a/pomba/service-decomposition/src/test/java/org/onap/sdnc/apps/pomba/servicedecomposition/test/ServiceDecompositionTest.java +++ b/pomba/service-decomposition/src/test/java/org/onap/sdnc/apps/pomba/servicedecomposition/test/ServiceDecompositionTest.java @@ -59,8 +59,8 @@ import org.springframework.test.context.web.WebAppConfiguration; @SpringBootTest @TestPropertySource(properties = { "aai.httpProtocol=http", - "aai.host=localhost", - "aai.port=8081", + "aai.serviceName=localhost", + "aai.servicePort=8081", "basicAuth.username=admin", "basicAuth.password=OBF:1u2a1toa1w8v1tok1u30" }) -- cgit 1.2.3-korg