aboutsummaryrefslogtreecommitdiffstats
path: root/aai-rest
diff options
context:
space:
mode:
Diffstat (limited to 'aai-rest')
-rw-r--r--aai-rest/pom.xml10
-rw-r--r--aai-rest/src/main/java/org/onap/aai/restclient/RestClient.java2
2 files changed, 6 insertions, 6 deletions
diff --git a/aai-rest/pom.xml b/aai-rest/pom.xml
index c640c105..203a89e4 100644
--- a/aai-rest/pom.xml
+++ b/aai-rest/pom.xml
@@ -29,17 +29,17 @@
<parent>
<groupId>org.onap.aai.aai-common</groupId>
<artifactId>aai-common</artifactId>
- <version>1.5.2-SNAPSHOT</version>
+ <version>1.6.0-SNAPSHOT</version>
</parent>
<artifactId>aai-rest</artifactId>
<name>aai-rest</name>
- <version>1.5.2-SNAPSHOT</version>
+ <version>1.6.0-SNAPSHOT</version>
<properties>
<onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
<eelf.core.version>1.0.1-oss</eelf.core.version>
- <spring.boot.starter.web.version>1.5.20.RELEASE</spring.boot.starter.web.version>
- <spring.boot.starter.parent.version>1.5.20.RELEASE</spring.boot.starter.parent.version>
+ <spring.boot.starter.web.version>1.5.21.RELEASE</spring.boot.starter.web.version>
+ <spring.boot.starter.parent.version>1.5.21.RELEASE</spring.boot.starter.parent.version>
<spring.security.version>1.0.8.RELEASE</spring.security.version>
</properties>
@@ -121,7 +121,7 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test</artifactId>
- <version>1.5.20.RELEASE</version>
+ <version>1.5.21.RELEASE</version>
<scope>test</scope>
</dependency>
</dependencies>
diff --git a/aai-rest/src/main/java/org/onap/aai/restclient/RestClient.java b/aai-rest/src/main/java/org/onap/aai/restclient/RestClient.java
index 130cb6ef..f5fc074b 100644
--- a/aai-rest/src/main/java/org/onap/aai/restclient/RestClient.java
+++ b/aai-rest/src/main/java/org/onap/aai/restclient/RestClient.java
@@ -79,7 +79,7 @@ public abstract class RestClient {
log.error("URL syntax error with url {}{}", getBaseUrl(), uri);
throw new RestClientException(e.getMessage());
}
- log.debug("METHOD={},URL={},http={}" + method, url, httpEntity);
+ log.debug("METHOD={},URL={},HEADERS={}", method, url, httpEntity);
ResponseEntity responseEntity = getRestTemplate().exchange(url, method, httpEntity, String.class);
log.debug("RESPONSE={}", responseEntity);